結果

問題 No.2220 Range Insert & Point Mex
ユーザー tailstails
提出日時 2023-02-20 18:26:40
言語 cLay
(20240714-1)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 6,946 ms
コンパイル使用メモリ 215,472 KB
実行使用メモリ 19,208 KB
最終ジャッジ日時 2024-07-21 13:02:38
合計ジャッジ時間 10,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,788 KB
testcase_01 AC 4 ms
6,812 KB
testcase_02 AC 4 ms
7,876 KB
testcase_03 AC 3 ms
7,784 KB
testcase_04 AC 4 ms
7,916 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 4 ms
7,748 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
7,748 KB
testcase_10 AC 3 ms
7,916 KB
testcase_11 AC 4 ms
7,916 KB
testcase_12 AC 4 ms
7,872 KB
testcase_13 AC 51 ms
16,268 KB
testcase_14 AC 48 ms
17,416 KB
testcase_15 AC 48 ms
16,272 KB
testcase_16 AC 48 ms
19,208 KB
testcase_17 AC 47 ms
16,140 KB
testcase_18 AC 46 ms
19,040 KB
testcase_19 AC 49 ms
16,400 KB
testcase_20 AC 42 ms
15,304 KB
testcase_21 AC 42 ms
15,048 KB
testcase_22 AC 41 ms
16,012 KB
testcase_23 AC 75 ms
16,400 KB
testcase_24 AC 68 ms
16,668 KB
testcase_25 AC 39 ms
14,852 KB
testcase_26 AC 70 ms
16,524 KB
testcase_27 AC 62 ms
15,104 KB
testcase_28 AC 11 ms
9,284 KB
testcase_29 AC 7 ms
9,192 KB
testcase_30 AC 8 ms
7,808 KB
testcase_31 AC 43 ms
16,272 KB
testcase_32 AC 38 ms
14,080 KB
testcase_33 AC 39 ms
15,116 KB
testcase_34 AC 56 ms
16,984 KB
testcase_35 AC 54 ms
17,124 KB
testcase_36 AC 55 ms
16,272 KB
testcase_37 AC 54 ms
16,272 KB
testcase_38 AC 65 ms
19,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

set<ll>s;
ll@n,e[3d5],c[n]{},j=0;
rep(n){
	ll@l,@r,@a;
	if(a<n){
		e[j++]=l<<32|0ll<<30|a;
		e[j++]=r<<32|2ll<<30|a;
	}
}
ll@q,r[q];
rep(i,q){
	ll@x;
	e[j++]=x<<32|1ll<<30|i;
}
sortA(j,e);
s.insert(0..n);
rep[e](x,j){
	ll t=x>>30&3;
	ll a=x&(1<<30)-1;
	if(t==0){
		if(!c[a]++){
			s.erase(a);
		}
	}
	if(t==1){
		r[a]=*s.begin();
	}
	if(t==2){
		if(!--c[a]){
			s.insert(a);
		}
	}
}
wtLn(r(q));
0