結果
問題 | No.2809 Sort Query |
ユーザー | k82b |
提出日時 | 2024-07-12 22:43:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,617 bytes |
コンパイル時間 | 2,477 ms |
コンパイル使用メモリ | 212,324 KB |
実行使用メモリ | 28,260 KB |
最終ジャッジ日時 | 2024-07-12 22:43:38 |
合計ジャッジ時間 | 30,879 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 230 ms
20,040 KB |
testcase_12 | AC | 220 ms
20,148 KB |
testcase_13 | WA | - |
testcase_14 | AC | 226 ms
20,128 KB |
testcase_15 | AC | 230 ms
19,948 KB |
testcase_16 | AC | 228 ms
20,400 KB |
testcase_17 | AC | 226 ms
19,856 KB |
testcase_18 | AC | 226 ms
20,344 KB |
testcase_19 | AC | 230 ms
19,896 KB |
testcase_20 | AC | 227 ms
20,288 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 169 ms
15,988 KB |
testcase_32 | AC | 166 ms
15,852 KB |
testcase_33 | AC | 172 ms
16,500 KB |
testcase_34 | AC | 167 ms
16,112 KB |
testcase_35 | AC | 169 ms
17,392 KB |
testcase_36 | AC | 176 ms
19,916 KB |
testcase_37 | AC | 179 ms
20,148 KB |
testcase_38 | AC | 175 ms
19,836 KB |
testcase_39 | AC | 177 ms
19,864 KB |
testcase_40 | AC | 174 ms
20,064 KB |
testcase_41 | AC | 302 ms
18,448 KB |
testcase_42 | AC | 298 ms
18,328 KB |
testcase_43 | AC | 290 ms
17,472 KB |
testcase_44 | AC | 289 ms
17,452 KB |
testcase_45 | AC | 289 ms
17,892 KB |
testcase_46 | AC | 229 ms
17,444 KB |
testcase_47 | AC | 236 ms
18,524 KB |
testcase_48 | AC | 235 ms
18,172 KB |
testcase_49 | AC | 233 ms
17,696 KB |
testcase_50 | AC | 236 ms
18,416 KB |
testcase_51 | AC | 261 ms
18,668 KB |
testcase_52 | AC | 246 ms
17,536 KB |
testcase_53 | AC | 296 ms
18,028 KB |
testcase_54 | AC | 237 ms
18,332 KB |
testcase_55 | AC | 205 ms
17,620 KB |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | WA | - |
testcase_67 | WA | - |
testcase_68 | WA | - |
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)); REP(i,N){ int id=lb(vs,A[i]); ST.set(id,ST.get(id)+1); } REP(i,Q){ if(op[i]==1){ int id=lb(vs,A[k[i]]); ST.set(id,ST.get(id)-1); id=lb(vs,x[i]); ST.set(id,ST.get(id)+1); A[k[i]]=x[i]; li[k[i]]=i; } if(op[i]==2){ ls=i; } 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"; } } } }