結果
問題 | No.2809 Sort Query |
ユーザー | keisuke6 |
提出日時 | 2024-07-01 17:37:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,274 bytes |
コンパイル時間 | 2,601 ms |
コンパイル使用メモリ | 224,696 KB |
実行使用メモリ | 107,104 KB |
最終ジャッジ日時 | 2024-07-12 21:09:09 |
合計ジャッジ時間 | 62,845 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
11,520 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 | 679 ms
30,292 KB |
testcase_12 | AC | 638 ms
30,252 KB |
testcase_13 | AC | 610 ms
30,252 KB |
testcase_14 | AC | 604 ms
30,380 KB |
testcase_15 | AC | 623 ms
30,252 KB |
testcase_16 | AC | 605 ms
30,252 KB |
testcase_17 | AC | 619 ms
30,252 KB |
testcase_18 | AC | 606 ms
30,368 KB |
testcase_19 | AC | 620 ms
30,264 KB |
testcase_20 | AC | 587 ms
30,380 KB |
testcase_21 | AC | 1,395 ms
107,032 KB |
testcase_22 | AC | 1,433 ms
107,012 KB |
testcase_23 | AC | 1,396 ms
107,008 KB |
testcase_24 | AC | 1,441 ms
107,104 KB |
testcase_25 | AC | 1,438 ms
107,000 KB |
testcase_26 | AC | 1,337 ms
86,132 KB |
testcase_27 | AC | 1,348 ms
86,204 KB |
testcase_28 | AC | 1,328 ms
86,152 KB |
testcase_29 | AC | 1,331 ms
86,160 KB |
testcase_30 | AC | 1,313 ms
86,152 KB |
testcase_31 | AC | 699 ms
25,892 KB |
testcase_32 | AC | 697 ms
25,888 KB |
testcase_33 | AC | 712 ms
25,892 KB |
testcase_34 | AC | 737 ms
26,020 KB |
testcase_35 | AC | 739 ms
25,892 KB |
testcase_36 | AC | 614 ms
30,240 KB |
testcase_37 | AC | 624 ms
30,240 KB |
testcase_38 | AC | 626 ms
30,236 KB |
testcase_39 | AC | 617 ms
30,236 KB |
testcase_40 | AC | 625 ms
30,240 KB |
testcase_41 | AC | 1,253 ms
59,188 KB |
testcase_42 | AC | 1,246 ms
59,140 KB |
testcase_43 | AC | 1,227 ms
59,056 KB |
testcase_44 | AC | 1,216 ms
59,184 KB |
testcase_45 | AC | 1,207 ms
59,036 KB |
testcase_46 | AC | 1,096 ms
59,136 KB |
testcase_47 | AC | 1,104 ms
59,100 KB |
testcase_48 | AC | 1,104 ms
59,120 KB |
testcase_49 | AC | 1,126 ms
59,048 KB |
testcase_50 | AC | 1,116 ms
59,060 KB |
testcase_51 | TLE | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long struct SEG{ private: int n; vector<int> m; public: SEG(){ n = (1ll<<20); m.resize(n); } void add(int a, int w) { for (int x = a; x < n; x |= x + 1) { m[x] += w; } } int f(int k){ k--; int l = 0, now = (1ll<<19)-1, s = 0; for(int i=18;i>=0;i--){ if(s+m[now] <= k){ s += m[now]; l += (1ll<<(i+1)); now += (1ll<<(i+1)); } now -= (1ll<<i); } if(s+m[now] <= k) l++; return l; } }; signed main(){ int N,Q; cin>>N>>Q; vector<int> A(N); for(int i=0;i<N;i++) cin>>A[i]; set<int> s; for(int x:A) s.insert(x); vector<int> X(Q),Y(Q),Z(Q); for(int i=0;i<Q;i++){ cin>>X[i]; if(X[i] == 1){ cin>>Y[i]>>Z[i]; s.insert(Z[i]); } if(X[i] == 3) cin>>Y[i]; } unordered_map<int,int> mp,mmp; int inda = 0; for(int x:s){ mp[inda] = x; mmp[x] = inda; inda++; } for(int i=0;i<N;i++) A[i] = mmp[A[i]]; for(int i=0;i<Q;i++)if(X[i] == 1) Z[i] = mmp[Z[i]]; reverse(X.begin(),X.end()); reverse(Y.begin(),Y.end()); reverse(Z.begin(),Z.end()); while(Q--){ int t = X[Q]; if(t == 1){ int a = Y[Q], b = Z[Q]; A[a-1] = b; } else if(t == 2){ sort(A.begin(),A.end()); break; } else{ int a = Y[Q]; cout<<mp[A[a-1]]<<endl; } } SEG seg; unordered_map<int,int> m; for(int i=0;i<N;i++) seg.add(A[i],1); while(Q--){ int t = X[Q]; if(t == 1){ int a = Y[Q], b = Z[Q]; m[a-1] = b; } else if(t == 2){ unordered_map<int,int> mm; for(auto [a,b]:m){ seg.add(A[a],-1); seg.add(b,1); A[a] = b; } m = mm; } else{ int a = Y[Q]; //cout<<a<<endl; if(m.count(a-1)) cout<<mp[m[a-1]]<<endl; else cout<<mp[seg.f(a)]<<endl; } } }