結果
問題 | No.2809 Sort Query |
ユーザー | k82b |
提出日時 | 2024-07-12 23:24:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,956 bytes |
コンパイル時間 | 3,100 ms |
コンパイル使用メモリ | 227,996 KB |
実行使用メモリ | 48,556 KB |
最終ジャッジ日時 | 2024-07-12 23:25:33 |
合計ジャッジ時間 | 43,807 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 497 ms
32,708 KB |
testcase_02 | WA | - |
testcase_03 | AC | 371 ms
32,608 KB |
testcase_04 | AC | 380 ms
32,796 KB |
testcase_05 | WA | - |
testcase_06 | AC | 295 ms
29,624 KB |
testcase_07 | AC | 290 ms
29,512 KB |
testcase_08 | WA | - |
testcase_09 | AC | 292 ms
29,644 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | WA | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | WA | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 272 ms
32,332 KB |
testcase_32 | AC | 274 ms
32,316 KB |
testcase_33 | RE | - |
testcase_34 | AC | 293 ms
32,748 KB |
testcase_35 | AC | 270 ms
32,236 KB |
testcase_36 | AC | 301 ms
37,724 KB |
testcase_37 | AC | 304 ms
37,700 KB |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | AC | 438 ms
30,356 KB |
testcase_42 | AC | 413 ms
30,132 KB |
testcase_43 | AC | 413 ms
31,248 KB |
testcase_44 | AC | 456 ms
31,220 KB |
testcase_45 | AC | 425 ms
30,292 KB |
testcase_46 | AC | 340 ms
31,592 KB |
testcase_47 | AC | 341 ms
31,264 KB |
testcase_48 | AC | 353 ms
32,312 KB |
testcase_49 | AC | 349 ms
30,676 KB |
testcase_50 | AC | 341 ms
31,408 KB |
testcase_51 | AC | 386 ms
30,380 KB |
testcase_52 | AC | 289 ms
30,292 KB |
testcase_53 | AC | 389 ms
31,104 KB |
testcase_54 | AC | 286 ms
31,148 KB |
testcase_55 | AC | 348 ms
30,764 KB |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | AC | 282 ms
26,292 KB |
testcase_61 | AC | 370 ms
30,160 KB |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | AC | 234 ms
20,744 KB |
testcase_66 | WA | - |
testcase_67 | WA | - |
testcase_68 | AC | 2 ms
6,940 KB |
testcase_69 | WA | - |
testcase_70 | AC | 2 ms
6,944 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)); map<int,int>mp; REP(i,N){ int id=lb(vs,A[i]); mp[i]=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)){ 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"; } } } }