11962022-03-15 20:06:26vandrasHadjáratcpp14Elfogadva 100/100128ms36672 KiB
#include <bits/stdc++.h>
using namespace std;

const int N = (1<<18);

struct point{
	int x, y, id;
	bool operator<(const point& o) const{
		return x < o.x;
	}
};

int n, p[N];
set<point> last[N];

int main()
{
	ios_base::sync_with_stdio(0); cin.tie(0);
	cin >> n;

	last[0].insert({0,0,0});
	int totmx=0, mxpos;

	for(int i = 1; i <= n; ++i){
		int x, y, mx=0; cin >> x >> y;

		for(int j = 17; j >= 0; --j){
			int nmx = mx + (1<<j);

			auto it = last[nmx].lower_bound({x,y,-1});
			if(it != last[nmx].begin()){
				--it;
				if(it->y >= y) continue;
				mx = nmx;
				p[i] = it->id;
			}
		}

		++mx;
		auto it = last[mx].lower_bound({x,y,-1});	

		while(it != last[mx].end() && it->y >= y) it = last[mx].erase(it);

		if(it == last[mx].end() || it->x != x) last[mx].insert({x,y,i});

		if(mx > totmx){
			totmx = mx;
			mxpos = i;
		}
	}

	cout << totmx << '\n';
	vector<int> res;
	while(mxpos){
		res.push_back(mxpos);
		mxpos = p[mxpos];
	}
	for(int i = res.size()-1; i >=0; --i) cout <<res[i] << ' ';
	cout << '\n';
	
	return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base100/100
1Elfogadva0/014ms26368 KiB
2Elfogadva0/056ms27744 KiB
3Elfogadva4/414ms27028 KiB
4Elfogadva4/413ms27020 KiB
5Elfogadva4/413ms27028 KiB
6Elfogadva4/413ms27056 KiB
7Elfogadva4/413ms27036 KiB
8Elfogadva4/412ms27036 KiB
9Elfogadva4/412ms27048 KiB
10Elfogadva4/413ms27068 KiB
11Elfogadva4/416ms27256 KiB
12Elfogadva4/418ms27448 KiB
13Elfogadva6/619ms27468 KiB
14Elfogadva6/627ms27912 KiB
15Elfogadva6/635ms28420 KiB
16Elfogadva6/650ms29288 KiB
17Elfogadva6/679ms30100 KiB
18Elfogadva6/675ms31188 KiB
19Elfogadva6/686ms32488 KiB
20Elfogadva6/6105ms34044 KiB
21Elfogadva6/6128ms35352 KiB
22Elfogadva6/6125ms36672 KiB