結果
問題 | No.2809 Sort Query |
ユーザー | highlighter |
提出日時 | 2024-04-22 23:59:53 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 443 ms / 2,000 ms |
コード長 | 2,371 bytes |
コンパイル時間 | 3,724 ms |
コンパイル使用メモリ | 265,528 KB |
実行使用メモリ | 40,852 KB |
最終ジャッジ日時 | 2024-07-12 21:00:50 |
合計ジャッジ時間 | 33,592 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 327 ms
35,368 KB |
testcase_02 | AC | 335 ms
35,368 KB |
testcase_03 | AC | 327 ms
35,244 KB |
testcase_04 | AC | 333 ms
35,244 KB |
testcase_05 | AC | 323 ms
35,368 KB |
testcase_06 | AC | 234 ms
31,784 KB |
testcase_07 | AC | 237 ms
31,912 KB |
testcase_08 | AC | 231 ms
31,912 KB |
testcase_09 | AC | 227 ms
31,864 KB |
testcase_10 | AC | 244 ms
31,908 KB |
testcase_11 | AC | 247 ms
33,704 KB |
testcase_12 | AC | 234 ms
33,828 KB |
testcase_13 | AC | 239 ms
33,788 KB |
testcase_14 | AC | 238 ms
33,788 KB |
testcase_15 | AC | 243 ms
33,704 KB |
testcase_16 | AC | 254 ms
33,828 KB |
testcase_17 | AC | 257 ms
33,656 KB |
testcase_18 | AC | 245 ms
33,796 KB |
testcase_19 | AC | 246 ms
33,796 KB |
testcase_20 | AC | 242 ms
33,828 KB |
testcase_21 | AC | 443 ms
40,744 KB |
testcase_22 | AC | 425 ms
40,816 KB |
testcase_23 | AC | 428 ms
40,748 KB |
testcase_24 | AC | 437 ms
40,852 KB |
testcase_25 | AC | 425 ms
40,840 KB |
testcase_26 | AC | 370 ms
36,860 KB |
testcase_27 | AC | 367 ms
36,652 KB |
testcase_28 | AC | 364 ms
36,908 KB |
testcase_29 | AC | 368 ms
36,652 KB |
testcase_30 | AC | 367 ms
36,904 KB |
testcase_31 | AC | 186 ms
31,460 KB |
testcase_32 | AC | 196 ms
31,448 KB |
testcase_33 | AC | 191 ms
31,400 KB |
testcase_34 | AC | 188 ms
31,528 KB |
testcase_35 | AC | 191 ms
31,492 KB |
testcase_36 | AC | 206 ms
33,704 KB |
testcase_37 | AC | 204 ms
33,812 KB |
testcase_38 | AC | 208 ms
33,832 KB |
testcase_39 | AC | 201 ms
33,792 KB |
testcase_40 | AC | 209 ms
33,888 KB |
testcase_41 | AC | 348 ms
32,616 KB |
testcase_42 | AC | 351 ms
32,492 KB |
testcase_43 | AC | 345 ms
32,640 KB |
testcase_44 | AC | 342 ms
32,768 KB |
testcase_45 | AC | 356 ms
32,640 KB |
testcase_46 | AC | 293 ms
32,640 KB |
testcase_47 | AC | 297 ms
32,640 KB |
testcase_48 | AC | 287 ms
32,640 KB |
testcase_49 | AC | 293 ms
32,640 KB |
testcase_50 | AC | 293 ms
32,640 KB |
testcase_51 | AC | 197 ms
32,640 KB |
testcase_52 | AC | 197 ms
32,512 KB |
testcase_53 | AC | 202 ms
32,640 KB |
testcase_54 | AC | 204 ms
32,640 KB |
testcase_55 | AC | 203 ms
32,512 KB |
testcase_56 | AC | 232 ms
27,528 KB |
testcase_57 | AC | 193 ms
23,960 KB |
testcase_58 | AC | 174 ms
22,076 KB |
testcase_59 | AC | 197 ms
25,724 KB |
testcase_60 | AC | 226 ms
22,180 KB |
testcase_61 | AC | 282 ms
26,948 KB |
testcase_62 | AC | 184 ms
23,288 KB |
testcase_63 | AC | 254 ms
28,124 KB |
testcase_64 | AC | 320 ms
31,752 KB |
testcase_65 | AC | 171 ms
19,220 KB |
testcase_66 | AC | 2 ms
5,376 KB |
testcase_67 | AC | 2 ms
5,376 KB |
testcase_68 | AC | 2 ms
5,376 KB |
testcase_69 | AC | 2 ms
5,376 KB |
testcase_70 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; struct Fenwick_tree{ private: unsigned int siz=1; vector<int> dat; public: Fenwick_tree(int N) : dat(N,0){ siz=N; } void add(int k,int x){ for(int i=k;i<siz;i+=((i+1)&(-i-1))){ dat[i]+=x; } } int max_right(int x){ int ans=0; int res=0; int h=bit_floor(siz-1); while(h>0){ if(ans+h<=siz){ if(res+dat[ans+h-1]<=x){ res+=dat[ans+h-1]; ans+=h; } } h/=2; } return ans; } }; signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,Q; cin >> N >> Q; vector<long long> A(N); for(int i=0;i<N;i++){ cin >> A[i]; } vector<long long> data=A; vector<vector<long long>> query(Q); for(int i=0;i<Q;i++){ int c; cin >> c; if(c==1){ int k; long long x; cin >> k >> x; vector<long long> vec={c,k,x}; data.emplace_back(x); query[i]=vec; continue; } if(c==2){ vector<long long> vec={c}; query[i]=vec; continue; } int k; cin >> k; vector<long long> vec={c,k}; query[i]=vec; } vector<long long> data2=data; sort(data2.begin(),data2.end()); data2.erase(unique(data2.begin(),data2.end()),data2.end()); for(long long &i : data){ i=lower_bound(data2.begin(),data2.end(),i)-data2.begin(); } vector<long long> relation(*max_element(data.begin(),data.end())+1); for(int i=0;i<N;i++){ relation[data[i]]=A[i]; A[i]=data[i]; } int mem=N; for(int i=0;i<Q;i++){ if(query[i][0]==1){ relation[data[mem]]=query[i][2]; query[i][2]=data[mem]; mem++; } } queue<long long> change; Fenwick_tree tree(relation.size()); for(int i=0;i<N;i++){ tree.add(A[i],1); change.emplace(i); } for(int i=0;i<Q;i++){ if(query[i][0]==1){ int k=query[i][1]-1; int x=query[i][2]; A[k]=x; change.emplace(k); } if(query[i][0]==2){ int t=change.size(); for(;t--;){ long long j=change.front(); change.pop(); long long t=tree.max_right(j); change.emplace((long long)(N)*t+j); } while(!change.empty()){ int t=change.front()/N; int j=change.front()%N; if(A[j]==-1){ change.pop(); continue; } tree.add(t,-1); tree.add(A[j],1); A[j]=-1; change.pop(); } } if(query[i][0]==3){ int k=query[i][1]-1; if(A[k]!=-1){ cout << relation[A[k]] << '\n'; } else{ cout << relation[tree.max_right(k)] << '\n'; } } } }