結果
問題 | No.1441 MErGe |
ユーザー | karinohito |
提出日時 | 2023-10-01 00:22:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 843 ms / 1,000 ms |
コード長 | 6,808 bytes |
コンパイル時間 | 4,715 ms |
コンパイル使用メモリ | 269,316 KB |
実行使用メモリ | 47,572 KB |
最終ジャッジ日時 | 2024-07-23 17:59:58 |
合計ジャッジ時間 | 22,662 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 6 ms
6,940 KB |
testcase_04 | AC | 7 ms
6,940 KB |
testcase_05 | AC | 16 ms
6,944 KB |
testcase_06 | AC | 16 ms
6,944 KB |
testcase_07 | AC | 17 ms
6,940 KB |
testcase_08 | AC | 175 ms
14,008 KB |
testcase_09 | AC | 177 ms
14,208 KB |
testcase_10 | AC | 277 ms
13,960 KB |
testcase_11 | AC | 254 ms
9,880 KB |
testcase_12 | AC | 285 ms
15,084 KB |
testcase_13 | AC | 632 ms
47,292 KB |
testcase_14 | AC | 629 ms
46,520 KB |
testcase_15 | AC | 670 ms
46,248 KB |
testcase_16 | AC | 628 ms
45,960 KB |
testcase_17 | AC | 617 ms
47,252 KB |
testcase_18 | AC | 539 ms
45,420 KB |
testcase_19 | AC | 608 ms
46,120 KB |
testcase_20 | AC | 481 ms
46,252 KB |
testcase_21 | AC | 424 ms
26,800 KB |
testcase_22 | AC | 604 ms
26,140 KB |
testcase_23 | AC | 843 ms
46,064 KB |
testcase_24 | AC | 820 ms
46,476 KB |
testcase_25 | AC | 823 ms
45,728 KB |
testcase_26 | AC | 839 ms
47,572 KB |
testcase_27 | AC | 840 ms
46,800 KB |
testcase_28 | AC | 262 ms
46,224 KB |
testcase_29 | AC | 266 ms
46,560 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> #include <time.h> using namespace atcoder; using ll = long long; using vll = vector<ll>; using vvll = vector<vll>; using vvvll = vector<vvll>; using vb = vector<bool>; using vvb = vector<vb>; using vvvb = vector<vvb>; #define all(A) A.begin(),A.end() #define rep(i, n) for (ll i = 0; i < (ll) (n); i++) template<class T> bool chmax(T& p, T q, bool C = 1) { if (C == 0 && p == q) { return 1; } if (p < q) { p = q; return 1; } else { return 0; } } template<class T> bool chmin(T& p, T q, bool C = 1) { if (C == 0 && p == q) { return 1; } if (p > q) { p = q; return 1; } else { return 0; } } ll modPow(long long a, long long n, long long p) { if (n == 0) return 1; // 0乗にも対応する場合 if (n == 1) return a % p; if (n % 2 == 1) return (a * modPow(a, n - 1, p)) % p; long long t = modPow(a, n / 2, p); return (t * t) % p; } ll gcd(ll(a), ll(b)) { if (a == 0)return b; if (b == 0)return a; ll c = a; while (a % b != 0) { c = a % b; a = b; b = c; } return b; } ll sqrtz(ll N) { ll L = 0; ll R = sqrt(N) + 10000; while (abs(R - L) > 1) { ll mid = (R + L) / 2; if (mid * mid <= N)L = mid; else R = mid; } return L; } using mint = modint998244353; using vm = vector<mint>; using vvm = vector<vm>; using vvvm = vector<vvm>; vector<mint> fact, factinv, inv; const ll mod = 998244353; void prenCkModp(ll n) { fact.resize(n + 5); factinv.resize(n + 5); inv.resize(n + 5); fact[0] = fact[1] = 1; factinv[0] = factinv[1] = 1; inv[1] = 1; for (ll i = 2; i < n + 5; i++) { fact[i] = (fact[i - 1] * i); inv[i] = (mod - ((inv[mod % i] * (mod / i)))); factinv[i] = (factinv[i - 1] * inv[i]); } } mint nCk(ll n, ll k) { if (n < k || k < 0) return 0; return (fact[n] * ((factinv[k] * factinv[n - k]))); } bool DEB = 1; /* base:桁数 insert(num): numを挿入. O(log(N)) erase(num): numがあれば一つ削除 O(log(N)) search(num): numがあるか判定 O(log(N)) small_num(num,x) d XOR num <x となる dの個数 O(log(N)) XOR_min(x): min(d XOR x) を求める ToDo: insert_cnt(num,x): numをcnt個挿入 erase_all(num): numがあれば全て削除 XOR_max(x): min(d XOR x) を求める All_xor(x): 全ての要素をXORする. 全てO(logN)でできるはず. 最後のは遅延評価的なのが必要でちょっと体力がいる */ struct Binary_Trie { ll base = 18;//桁数 struct Node { vector<ll> next; vector<ll> accept; ll c; ll common; Node(ll c_) : c(c_), common(0) { next.assign(2, -1); } }; vector<Node> nodes; ll root = 0; Binary_Trie() { nodes.push_back(Node(root)); } void insert(const ll& num) { ll node_id = 0; for (ll b = base; b >= 0; b--) { ll nt = 0; nt = (num & (1ll << b) ? 1 : 0); if (nodes[node_id].next[nt] == -1) { nodes.push_back(Node(nt)); nodes[node_id].next[nt] = nodes.size() - 1; } nodes[node_id].common++; node_id = nodes[node_id].next[nt]; } nodes[node_id].common++; } bool search(const ll& num) { ll node_id = 0; bool EX = 1; for (ll b = base; b >= 0; b--) { ll nt = 0; nt = (num & (1ll << b) ? 1 : 0); if (nodes[node_id].next[nt] == -1||nodes[nodes[node_id].next[nt]].common==0) { EX = 0; break; } node_id = nodes[node_id].next[nt]; } return EX; } void erase(const ll& num) { if (!search(num))return; ll node_id = 0; for (ll b = base; b >= 0; b--) { ll nt = 0; nt = (num & (1ll << b) ? 1 : 0); nodes[node_id].common--; node_id = nodes[node_id].next[nt]; } nodes[node_id].common--; } ll small_num(const ll& p, const ll& x) {//d XOR p<x なるdの個数 ll res = 0; ll node_id = 0; for (ll b = base; b >= 0; b--) { ll nx = 0, np = 0; nx = (x & (1ll << b) ? 1 : 0); np = (p & (1ll << b) ? 1 : 0); if (nx == 1) { if (nodes[node_id].next[np] != -1) { res += nodes[nodes[node_id].next[np]].common; } if (nodes[node_id].next[1 - np] == -1) { break; } else { node_id = nodes[node_id].next[1 - np]; continue; } } else { if (nodes[node_id].next[np] == -1) { break; } else { node_id = nodes[node_id].next[np]; continue; } } } return res; } ll min_XOR(ll x){ ll res=0; ll node_id = 0; for (ll b = base; b >= 0; b--) { ll nx = 0; nx = (x & (1ll << b) ? 1 : 0); if (nodes[node_id].next[nx] != -1&&nodes[nodes[node_id].next[nx]].common>0) { node_id=nodes[node_id].next[nx]; } else { res+=(1ll<<b); node_id = nodes[node_id].next[1 - nx]; } } return res; } ll K_thsmall(ll K){//K番目に小さい値を返す.(0index) if(nodes[0].common<=K)return -1e18; ll node_id=0; ll res=0; for (ll b = base; b >= 0; b--) { if(nodes[node_id].next[0]!=-1&&nodes[nodes[node_id].next[0]].common>K){ node_id=nodes[node_id].next[0]; } else{ res+=(1ll<<b); if(nodes[node_id].next[0]!=-1){ K-=nodes[nodes[node_id].next[0]].common; } node_id=nodes[node_id].next[1]; } } return res; } }; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); ll N,Q; cin>>N>>Q; vll A(N); rep(i,N)cin>>A[i]; Binary_Trie BT; rep(i,N+1)BT.insert(i); vll SA(N+1,0); rep(i,N)SA[i+1]=SA[i]+A[i]; rep(i,Q){ ll T,L,R; cin>>T>>L>>R; L--;R--; ll S=BT.K_thsmall(L); ll F=BT.K_thsmall(R+1); if(T==1){ for(ll l=L+1;l<=R;l++){ BT.erase(BT.K_thsmall(L+1)); } } else{ cout<<SA[F]-SA[S]<<endl; } } }