結果

問題 No.2220 Range Insert & Point Mex
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-07-13 23:08:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 935 bytes
コンパイル時間 5,620 ms
コンパイル使用メモリ 320,356 KB
実行使用メモリ 13,748 KB
最終ジャッジ日時 2024-09-15 08:53:53
合計ジャッジ時間 12,260 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 212 ms
12,332 KB
testcase_14 AC 211 ms
12,572 KB
testcase_15 AC 207 ms
13,624 KB
testcase_16 AC 212 ms
12,692 KB
testcase_17 AC 214 ms
13,664 KB
testcase_18 AC 210 ms
12,300 KB
testcase_19 AC 211 ms
12,268 KB
testcase_20 AC 232 ms
13,376 KB
testcase_21 AC 230 ms
13,748 KB
testcase_22 AC 228 ms
13,616 KB
testcase_23 AC 223 ms
12,808 KB
testcase_24 AC 190 ms
11,448 KB
testcase_25 WA -
testcase_26 AC 201 ms
12,196 KB
testcase_27 AC 156 ms
10,700 KB
testcase_28 WA -
testcase_29 AC 57 ms
6,944 KB
testcase_30 AC 57 ms
6,944 KB
testcase_31 AC 167 ms
13,240 KB
testcase_32 AC 130 ms
9,796 KB
testcase_33 AC 132 ms
9,684 KB
testcase_34 AC 204 ms
12,488 KB
testcase_35 AC 206 ms
12,420 KB
testcase_36 AC 200 ms
12,360 KB
testcase_37 AC 198 ms
13,532 KB
testcase_38 AC 197 ms
13,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define db double
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
	int n;cin>>n;
	vc<pair<int,pp>>v; 
	rep(i,n){
	   int a,b,c;cin>>a>>b>>c;
	   v.pb({a,{-1,c}}); v.pb({b,{1,c}});
	}
	int q;cin>>q;
	vc<int>ans(q);
	rep(i,q){
		int a;cin>>a;
		v.pb({a,{0,i}});
	}
	sort(all(v));
	set<int>s; rep(i,n+1)s.insert(i);
	vc<int>c(n+1,0);
	for(auto [z,x]:v){
		auto [t,a]=x;
		if(a>n)continue;
		if(t==0)ans[a]=*s.begin();
		if(t==-1){
			if(c[a]==0)s.erase(a);
			c[a]++;
		}
		if(t==1){
			if(c[a]==1)s.insert(a);
			c[a]--;
		}
	}
	rep(i,q)cout<<ans[i]<<"\n";
}
	
0