結果
問題 | No.2809 Sort Query |
ユーザー | highlighter |
提出日時 | 2024-06-12 20:47:20 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 474 ms / 2,000 ms |
コード長 | 2,396 bytes |
コンパイル時間 | 3,468 ms |
コンパイル使用メモリ | 265,432 KB |
実行使用メモリ | 41,004 KB |
最終ジャッジ日時 | 2024-07-12 21:07:18 |
合計ジャッジ時間 | 37,536 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 372 ms
36,276 KB |
testcase_02 | AC | 374 ms
35,740 KB |
testcase_03 | AC | 377 ms
36,104 KB |
testcase_04 | AC | 377 ms
35,704 KB |
testcase_05 | AC | 374 ms
35,548 KB |
testcase_06 | AC | 273 ms
32,088 KB |
testcase_07 | AC | 274 ms
33,012 KB |
testcase_08 | AC | 275 ms
32,284 KB |
testcase_09 | AC | 276 ms
32,076 KB |
testcase_10 | AC | 272 ms
32,596 KB |
testcase_11 | AC | 276 ms
33,960 KB |
testcase_12 | AC | 272 ms
34,108 KB |
testcase_13 | AC | 281 ms
33,996 KB |
testcase_14 | AC | 279 ms
34,020 KB |
testcase_15 | AC | 275 ms
33,948 KB |
testcase_16 | AC | 278 ms
33,992 KB |
testcase_17 | AC | 277 ms
34,032 KB |
testcase_18 | AC | 272 ms
33,932 KB |
testcase_19 | AC | 276 ms
34,004 KB |
testcase_20 | AC | 272 ms
34,076 KB |
testcase_21 | AC | 470 ms
40,988 KB |
testcase_22 | AC | 468 ms
41,004 KB |
testcase_23 | AC | 474 ms
40,968 KB |
testcase_24 | AC | 474 ms
40,972 KB |
testcase_25 | AC | 472 ms
40,964 KB |
testcase_26 | AC | 449 ms
37,012 KB |
testcase_27 | AC | 445 ms
36,936 KB |
testcase_28 | AC | 444 ms
36,852 KB |
testcase_29 | AC | 453 ms
37,084 KB |
testcase_30 | AC | 445 ms
36,932 KB |
testcase_31 | AC | 234 ms
31,768 KB |
testcase_32 | AC | 235 ms
31,628 KB |
testcase_33 | AC | 243 ms
32,388 KB |
testcase_34 | AC | 236 ms
31,716 KB |
testcase_35 | AC | 237 ms
32,092 KB |
testcase_36 | AC | 237 ms
33,968 KB |
testcase_37 | AC | 237 ms
34,032 KB |
testcase_38 | AC | 234 ms
34,016 KB |
testcase_39 | AC | 235 ms
34,024 KB |
testcase_40 | AC | 237 ms
33,944 KB |
testcase_41 | AC | 430 ms
32,812 KB |
testcase_42 | AC | 444 ms
32,932 KB |
testcase_43 | AC | 432 ms
32,776 KB |
testcase_44 | AC | 435 ms
32,796 KB |
testcase_45 | AC | 438 ms
32,924 KB |
testcase_46 | AC | 374 ms
32,824 KB |
testcase_47 | AC | 374 ms
32,812 KB |
testcase_48 | AC | 368 ms
32,768 KB |
testcase_49 | AC | 376 ms
32,784 KB |
testcase_50 | AC | 377 ms
32,816 KB |
testcase_51 | AC | 472 ms
32,752 KB |
testcase_52 | AC | 388 ms
32,832 KB |
testcase_53 | AC | 371 ms
32,784 KB |
testcase_54 | AC | 305 ms
32,776 KB |
testcase_55 | AC | 283 ms
32,832 KB |
testcase_56 | AC | 273 ms
27,940 KB |
testcase_57 | AC | 228 ms
24,188 KB |
testcase_58 | AC | 214 ms
22,180 KB |
testcase_59 | AC | 243 ms
25,828 KB |
testcase_60 | AC | 258 ms
22,196 KB |
testcase_61 | AC | 317 ms
27,992 KB |
testcase_62 | AC | 220 ms
23,520 KB |
testcase_63 | AC | 302 ms
28,356 KB |
testcase_64 | AC | 369 ms
32,092 KB |
testcase_65 | AC | 201 ms
19,456 KB |
testcase_66 | AC | 2 ms
6,940 KB |
testcase_67 | AC | 2 ms
6,944 KB |
testcase_68 | AC | 2 ms
6,944 KB |
testcase_69 | AC | 2 ms
6,944 KB |
testcase_70 | AC | 2 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; struct Fenwick_tree{ private: unsigned int siz=1; unsigned int d=1; vector<int> dat; public: Fenwick_tree(int N) : dat(N,0){ siz=N; d=bit_floor(siz-1); } 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; for(unsigned int h=d;h>0;h/=2){ if(ans+h<=siz){ if(res+dat[ans+h-1]<=x){ res+=dat[ans+h-1]; ans+=h; } } } return ans; } }; signed main(){ int N,Q; scanf("%d%d",&N,&Q); vector<long long> A(N); for(int i=0;i<N;i++){ scanf("%lld",&A[i]); } vector<long long> data=A; vector<vector<long long>> query(Q); for(int i=0;i<Q;i++){ int c; scanf("%d",&c); if(c==1){ int k; long long x; scanf("%d%lld",&k,&x); data.emplace_back(x); query[i]={c,k,x}; continue; } if(c==2){ query[i]={c}; continue; } int k; scanf("%d",&k); query[i]={c,k}; } 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; vector<bool> change2(N,false); 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; if(!change2[k]){ change.emplace(k); change2[k]=true; } } if(query[i][0]==2){ int t=change.size(); for(;t--;){ long long j=change.front(); change2[j]=false; 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){ printf("%lld\n",relation[A[k]]); } else{ printf("%lld\n",relation[tree.max_right(k)]); } } } }