結果
問題 | No.2809 Sort Query |
ユーザー | keisuke6 |
提出日時 | 2024-07-01 17:46:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,263 bytes |
コンパイル時間 | 2,450 ms |
コンパイル使用メモリ | 224,256 KB |
実行使用メモリ | 107,144 KB |
最終ジャッジ日時 | 2024-07-12 21:10:17 |
合計ジャッジ時間 | 75,209 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
11,424 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 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 1,404 ms
107,076 KB |
testcase_23 | AC | 1,376 ms
107,036 KB |
testcase_24 | WA | - |
testcase_25 | AC | 1,392 ms
107,144 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 1,237 ms
59,032 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 1,094 ms
59,104 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 1,098 ms
59,100 KB |
testcase_50 | WA | - |
testcase_51 | TLE | - |
testcase_52 | TLE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | TLE | - |
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 | 5 ms
11,376 KB |
ソースコード
#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){ 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-1; } }; 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; } } }