11922022-03-15 19:07:24vandrasHadjáratcpp14Accepted 100/100115ms30956 KiB
#include <bits/stdc++.h>
using namespace std;
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
/*<DEBUG>*/
#define tem template <typename 
#define can_shift(_X_, ...) enable_if_t<sizeof test<_X_>(0) __VA_ARGS__ 8, debug&> operator<<(T i)
#define _op debug& operator<<
tem C > auto test(C *x) -> decltype(cerr << *x, 0LL);
tem C > char test(...);
tem C > struct itr{C begin, end; };
tem C > itr<C> get_range(C b, C e) { return itr<C>{b, e}; }
struct debug{
#ifdef _LOCAL
	~debug(){ cerr << endl; }
	tem T > can_shift(T, ==){ cerr << boolalpha << i; return *this; }
	tem T> can_shift(T, !=){ return *this << get_range(begin(i), end(i)); }
	tem T, typename U > _op (pair<T, U> i){ 
		return *this << "< " << i.first << " , " << i.second << " >"; }
	tem T> _op (itr<T> i){
		*this <<  "{ ";
		for(auto it = i.begin; it != i.end; it++){
			*this << " , " + (it==i.begin?2:0) << *it;
		}
		return *this << " }";
	}
#else
tem T> _op (const T&) { return *this; }
#endif 
};

tem T>
string _ARR_(T* arr, int sz){
	string ret = "{ " + to_string(arr[0]); 
	for(int i = 1; i < sz; i++) ret += " , " +  to_string(arr[i]);
	ret += " }"; return ret;
}

#define exp(...) " [ " << #__VA_ARGS__ << " : " << (__VA_ARGS__) << " ]"
/*</DEBUG>*/

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
typedef pair<int, int> pii;
//mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());

#define pb push_back
#define FAST ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define TC int __TC__; cin >> __TC__; while(__TC__--)
#define ar array

const int INF = 1e9 + 7, N = 200005;


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()
{
	FAST;
	cin >> n;

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

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

		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;
	int cur = mxpos;
	while(cur){
		res.pb(cur);
		cur = p[cur];
	}
	reverse(res.begin(), res.end());
	for(int x : res) cout << x << ' ';
	cout << '\n';
	
	return 0;
}
SubtaskSumTestVerdictTimeMemory
base100/100
1Accepted0/012ms20640 KiB
2Accepted0/057ms22052 KiB
3Accepted4/49ms21212 KiB
4Accepted4/49ms21212 KiB
5Accepted4/49ms21220 KiB
6Accepted4/49ms21220 KiB
7Accepted4/410ms21228 KiB
8Accepted4/49ms21228 KiB
9Accepted4/410ms21320 KiB
10Accepted4/410ms21364 KiB
11Accepted4/414ms21496 KiB
12Accepted4/417ms21680 KiB
13Accepted6/617ms21788 KiB
14Accepted6/626ms22124 KiB
15Accepted6/635ms22612 KiB
16Accepted6/657ms23480 KiB
17Accepted6/667ms24376 KiB
18Accepted6/678ms25376 KiB
19Accepted6/689ms26656 KiB
20Accepted6/6115ms28232 KiB
21Accepted6/6108ms29636 KiB
22Accepted6/6108ms30956 KiB