結果
問題 | No.2809 Sort Query |
ユーザー | k82b |
提出日時 | 2024-07-12 23:45:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,972 bytes |
コンパイル時間 | 2,467 ms |
コンパイル使用メモリ | 219,416 KB |
実行使用メモリ | 31,812 KB |
最終ジャッジ日時 | 2024-07-12 23:46:08 |
合計ジャッジ時間 | 31,471 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 270 ms
20,328 KB |
testcase_02 | AC | 270 ms
20,204 KB |
testcase_03 | AC | 270 ms
20,192 KB |
testcase_04 | AC | 267 ms
20,204 KB |
testcase_05 | WA | - |
testcase_06 | AC | 187 ms
15,976 KB |
testcase_07 | AC | 197 ms
15,984 KB |
testcase_08 | WA | - |
testcase_09 | AC | 188 ms
15,980 KB |
testcase_10 | AC | 188 ms
15,976 KB |
testcase_11 | AC | 247 ms
22,632 KB |
testcase_12 | AC | 243 ms
22,504 KB |
testcase_13 | AC | 243 ms
22,640 KB |
testcase_14 | AC | 241 ms
22,632 KB |
testcase_15 | AC | 241 ms
22,384 KB |
testcase_16 | AC | 246 ms
22,508 KB |
testcase_17 | AC | 243 ms
22,508 KB |
testcase_18 | AC | 250 ms
22,508 KB |
testcase_19 | AC | 247 ms
22,512 KB |
testcase_20 | AC | 247 ms
23,868 KB |
testcase_21 | AC | 382 ms
30,828 KB |
testcase_22 | AC | 375 ms
30,828 KB |
testcase_23 | AC | 382 ms
30,828 KB |
testcase_24 | AC | 388 ms
31,812 KB |
testcase_25 | AC | 373 ms
30,572 KB |
testcase_26 | AC | 325 ms
22,256 KB |
testcase_27 | AC | 315 ms
22,192 KB |
testcase_28 | AC | 317 ms
22,124 KB |
testcase_29 | AC | 324 ms
22,256 KB |
testcase_30 | AC | 358 ms
22,380 KB |
testcase_31 | AC | 186 ms
18,028 KB |
testcase_32 | AC | 189 ms
18,120 KB |
testcase_33 | AC | 185 ms
18,232 KB |
testcase_34 | AC | 179 ms
18,284 KB |
testcase_35 | AC | 214 ms
18,160 KB |
testcase_36 | AC | 213 ms
22,508 KB |
testcase_37 | AC | 210 ms
22,508 KB |
testcase_38 | AC | 217 ms
22,508 KB |
testcase_39 | AC | 216 ms
22,504 KB |
testcase_40 | AC | 215 ms
22,384 KB |
testcase_41 | AC | 283 ms
16,716 KB |
testcase_42 | AC | 297 ms
16,708 KB |
testcase_43 | AC | 301 ms
16,716 KB |
testcase_44 | AC | 277 ms
16,840 KB |
testcase_45 | AC | 286 ms
16,840 KB |
testcase_46 | AC | 265 ms
16,592 KB |
testcase_47 | AC | 241 ms
16,836 KB |
testcase_48 | AC | 238 ms
16,712 KB |
testcase_49 | AC | 238 ms
16,580 KB |
testcase_50 | AC | 235 ms
16,580 KB |
testcase_51 | AC | 295 ms
17,628 KB |
testcase_52 | AC | 201 ms
16,712 KB |
testcase_53 | AC | 177 ms
16,716 KB |
testcase_54 | AC | 204 ms
16,712 KB |
testcase_55 | AC | 180 ms
16,840 KB |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | AC | 191 ms
13,004 KB |
testcase_60 | AC | 196 ms
15,476 KB |
testcase_61 | AC | 245 ms
17,524 KB |
testcase_62 | AC | 182 ms
12,700 KB |
testcase_63 | AC | 228 ms
16,800 KB |
testcase_64 | AC | 291 ms
19,052 KB |
testcase_65 | AC | 159 ms
12,168 KB |
testcase_66 | WA | - |
testcase_67 | WA | - |
testcase_68 | AC | 2 ms
5,376 KB |
testcase_69 | WA | - |
testcase_70 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define REP(i,n)for(int i=0;i<(n);++i) #define REP1(i,n)for(int i=1;i<=(n);++i) #define FORE(...)for(auto&&__VA_ARGS__) #define ALL(x)begin(x),end(x) #define mset(x,y)memset(x,y,sizeof x) #define pb push_back #define eb emplace_back #define V vector #define lb(x,y)(lower_bound(begin(x),end(x),y)-begin(x)) #define ub(x,y)(upper_bound(begin(x),end(x),y)-begin(x)) template<class T,class S>inline bool chmin(T&A,S B){return A>B?A=B,1:0;} template<class T,class S>inline bool chmax(T&A,S B){return A<B?A=B,1:0;} void fastIO(){ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);} using Int=long long; using Real=long double; using PII=pair<int,int>; using PLL=pair<Int,Int>; #include<atcoder/segtree> int OP(int a,int b){return a+b;} int E(){return 0;} int main(){ fastIO(); int N,Q;cin>>N>>Q; Int A[N]; REP(i,N)cin>>A[i]; int li[N]; mset(li,-1); int ls=-1; int op[Q],k[Q];Int x[Q]; REP(i,Q){ cin>>op[i]; if(op[i]==1)cin>>k[i]>>x[i],--k[i]; if(op[i]==3)cin>>k[i],--k[i]; } V<Int>vs; REP(i,N)vs.pb(A[i]); REP(i,Q)if(op[i]==1)vs.pb(x[i]); sort(ALL(vs)); vs.erase(unique(ALL(vs)),end(vs)); atcoder::segtree<int,OP,E>ST(size(vs)); REP(i,N){ int id=lb(vs,A[i]); ST.set(id,ST.get(id)+1); } V<PII>se; REP(i,Q){ if(op[i]==1){ A[k[i]]=x[i]; li[k[i]]=i; se.eb(k[i],-i); } if(op[i]==2){ sort(ALL(se)); V<int>upd; REP(j,size(se)){ if(j&&se[j].first==se[j-1].first)continue; se[j].second*=-1; int id=ST.max_right(0,[&](int semi){return semi<se[j].first+1;}); upd.pb(id); } REP(j,size(upd)){ ST.set(upd[j],ST.get(upd[j])-1); } REP(j,size(se)){ if(j&&se[j].first==se[j-1].first)continue; int id=lb(vs,x[se[j].second]); ST.set(id,ST.get(id)+1); } ls=i; se.clear(); } if(op[i]==3){ if(li[k[i]]>=ls){ cout<<A[k[i]]<<"\n"; }else{ cout<<vs[ST.max_right(0,[&](int semi){return semi<k[i]+1;})]<<"\n"; } } } }