結果
問題 | No.2809 Sort Query |
ユーザー | kwm_t |
提出日時 | 2024-07-12 23:06:55 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,653 bytes |
コンパイル時間 | 3,152 ms |
コンパイル使用メモリ | 267,496 KB |
実行使用メモリ | 180,168 KB |
最終ジャッジ日時 | 2024-07-12 23:07:12 |
合計ジャッジ時間 | 16,386 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
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> //#include <atcoder/all> using namespace std; //using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; //const int INF = 1e9; //const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n) - 1; i >= 0; --i) #define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define P pair<int,int> template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } #include <array> #include <vector> struct BinaryTrie { int kind; std::vector<int>node; std::vector<std::array<int, 2>>next; std::array<int, 2> e{ -1,-1 }; BinaryTrie(int _kind) :kind(_kind) { node.resize(1); next.emplace_back(e); } void insert(const std::vector<int>&v) { int now = 0; for (int i = 0; i < v.size(); ++i) { if (-1 == next[now][v[i]]) { next[now][v[i]] = node.size(); node.emplace_back(0); next.emplace_back(e); } now = next[now][v[i]]; node[now]++; } } // 1-indexed std::vector<int>kth_element(int k) { int now = 0; std::vector<int>ret; while (true) { bool flag = false; for (int i = 0; i < kind; ++i) { if (-1 == next[now][i])continue; if (k <= node[next[now][i]]) { flag = true; ret.emplace_back(i); now = next[now][i]; break; } else { k -= node[next[now][i]]; } } if (!flag)break; } return ret; } bool seach(const std::vector<int>&v) { int now = 0; for (int i = 0; i < (int)v.size(); ++i) { if (-1 == next[now][v[i]])return false; if (node[next[now][v[i]]] <= 0)return false; now = next[now][v[i]]; } int count = node[now]; for (int i = 0; i < kind; ++i)if (-1 != next[now][i])count -= node[next[now][i]]; return count; } void erase(const std::vector<int>&v) { int now = 0; for (int i = 0; i < (int)v.size(); ++i) { now = next[now][v[i]]; node[now]--; } } // Binary Trie std::vector<int>xor_max(const std::vector<int>&v) { std::vector<int>ret; int now = 0; for (int i = 0; i < (int)v.size(); ++i) { std::vector<int>tmp = { 1 - v[i],v[i] }; for (int j = 0; j < (int)tmp.size(); ++j) { if (-1 == next[now][tmp[j]])continue; if (node[next[now][tmp[j]]] <= 0)continue; ret.emplace_back(tmp[j]); now = next[now][tmp[j]]; break; } } return ret; } std::vector<int>xor_min(const std::vector<int>&v) { std::vector<int>ret; int now = 0; for (int i = 0; i < (int)v.size(); ++i) { std::vector<int>tmp = { v[i],1 - v[i] }; for (int j = 0; j < (int)tmp.size(); ++j) { if (-1 == next[now][tmp[j]])continue; if (node[next[now][tmp[j]]] <= 0)continue; ret.emplace_back(tmp[j]); now = next[now][tmp[j]]; break; } } return ret; } // xとxorした結果がk未満になる物の数(0含む) int xor_count(const std::vector<int>&x, const std::vector<int>&k) { int ret = 0, now = 0; for (int i = 0; i < (int)k.size(); ++i) { if (0 == k[i]) { if (-1 == next[now][x[i]])break; now = next[now][x[i]]; } else { if (-1 != next[now][x[i]])ret += node[next[now][x[i]]]; if (-1 == next[now][1 - x[i]])break; now = next[now][1 - x[i]]; } } return ret; } // xより大きいものの個数 int over_count(const std::vector<int>&x) { int ret = 0, now = 0; for (int i = 0; i < (int)x.size(); ++i) { if (0 == x[i]) { if (-1 != next[now][1])ret += node[next[now][1]]; } if (-1 == next[now][x[i]])break; now = next[now][x[i]]; } return ret; } std::vector<int> trans(long long n, int sz = 60) { std::vector<int>ret(sz, 0); for (int i = 0; i < sz; ++i) { if (1 & (n >> i))ret[sz - 1 - i] = 1; } return ret; } long long inverse(const std::vector<int>&v) { long long ret = 0; for (int i = 0; i < v.size(); ++i) { ret *= 2; ret += v[i]; } return ret; } }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, q; cin >> n >> q; vector<long long>a(n); rep(i, n)cin >> a[i]; struct Query { int t; int k, x; Query(int t = -1, int k = -1, int x = -1) :t(t), k(k), x(x) {} void output() { std::cout << t << " " << k << " " << x << endl; } }; vector<Query>query(q); rep(i, q) { int t, k, x; cin >> t; if (1 == t)cin >> k >> x, k--; else if (3 == t)cin >> k, k--; query[i] = Query(t, k, x); } //rep(i, q) { // cout << query[i].k << " " << query[i].t << " " << query[i].x << endl; //} int i = 0; for (; i < q;) { while (i < q && 2 != query[i].t) { if (3 == query[i].t) cout << a[query[i].k] << endl; else a[query[i].k] = query[i].x; i++; } break; } BinaryTrie bt(2); rep(i, n)bt.insert(bt.trans(a[i])); i++; for (; i < q;) { map<int, long long>mp;//index,value while (i < q && 2 != query[i].t) { query[i].output(); int index = query[i].k; if (3 == query[i].t) { if (mp.count(index)) { cout << mp[index] << endl; } else { auto v = bt.kth_element(index + 1); cout << bt.inverse(v) << endl; } } else { mp[index] = query[i].x; } i++; } vector<pair<long long, long long>>vec; for (auto[k, v] : mp) { auto val = bt.kth_element(k + 1); vec.push_back({ bt.inverse(val) ,v }); } for (auto p : vec) { bt.erase(bt.trans(p.first)); bt.insert(bt.trans(p.second)); } // sort } return 0; }