結果
問題 | No.2901 Logical Sum of Substring |
ユーザー | vjudge1 |
提出日時 | 2024-09-25 16:56:24 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 683 ms / 3,000 ms |
コード長 | 3,039 bytes |
コンパイル時間 | 3,518 ms |
コンパイル使用メモリ | 164,816 KB |
実行使用メモリ | 75,904 KB |
最終ジャッジ日時 | 2024-09-25 16:56:44 |
合計ジャッジ時間 | 19,120 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 7 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 6 ms
5,376 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 7 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 539 ms
75,776 KB |
testcase_09 | AC | 559 ms
75,776 KB |
testcase_10 | AC | 534 ms
75,904 KB |
testcase_11 | AC | 653 ms
75,776 KB |
testcase_12 | AC | 644 ms
75,776 KB |
testcase_13 | AC | 645 ms
75,904 KB |
testcase_14 | AC | 672 ms
75,776 KB |
testcase_15 | AC | 673 ms
75,776 KB |
testcase_16 | AC | 683 ms
75,776 KB |
testcase_17 | AC | 634 ms
75,776 KB |
testcase_18 | AC | 606 ms
75,776 KB |
testcase_19 | AC | 611 ms
75,776 KB |
testcase_20 | AC | 622 ms
75,776 KB |
testcase_21 | AC | 609 ms
75,776 KB |
testcase_22 | AC | 610 ms
75,776 KB |
testcase_23 | AC | 561 ms
75,776 KB |
testcase_24 | AC | 540 ms
75,904 KB |
testcase_25 | AC | 539 ms
75,776 KB |
testcase_26 | AC | 510 ms
75,904 KB |
testcase_27 | AC | 508 ms
75,776 KB |
testcase_28 | AC | 499 ms
75,776 KB |
testcase_29 | AC | 601 ms
75,776 KB |
testcase_30 | AC | 618 ms
75,776 KB |
testcase_31 | AC | 589 ms
75,776 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using pir = pair<int, int>; const int N = 2e5 + 5; const int M = 17; int n, k, q, a[N]; struct node{ int ans, maxx[M], minx[M]; void clean(){ ans = N; for(int i = 0; i < k; i++) maxx[i] = -N; for(int i = 0; i < k; i++) minx[i] = N; } }tr[4 * N]; node mymerge(int l, int mid, int r, const node &tl, const node &tr){ node m; m.clean(); m.ans = min(tl.ans, tr.ans); for(int i = 0; i < k; i++) m.maxx[i] = max(tl.maxx[i], tr.maxx[i]); for(int i = 0; i < k; i++) m.minx[i] = min(tl.minx[i], tr.minx[i]); if(m.ans == 1) return m; vector<int> v; for(int i = 0; i < k; i++){ if(tl.maxx[i] != -N) v.push_back(tl.maxx[i]); if(tl.minx[i] != N) v.push_back(tl.minx[i]); if(tr.maxx[i] != -N) v.push_back(tr.maxx[i]); if(tr.minx[i] != N) v.push_back(tr.minx[i]); } sort(v.begin(), v.end()); for(int i = 0; i < v.size(); i++){ int sum = 0; for(int j = i; j < v.size(); j++){ sum |= a[v[j]]; if(sum == (1 << k) - 1){ m.ans = min(m.ans, v[j] - v[i] + 1); break; } } } return m; } void build(int id, int l, int r){ if(l == r){ tr[id].clean(); if(a[l] == (1 << k) - 1) tr[id].ans = 1; for(int i = 0; i < k; i++){ if((a[l] >> i) & 1) tr[id].maxx[i] = l, tr[id].minx[i] = l; } return ; } int mid = (l + r) >> 1; build((id << 1), l, mid), build(((id << 1) | 1), mid + 1, r); tr[id] = mymerge(l, mid, r, tr[id << 1], tr[(id << 1) | 1]); } void change(int id, int l, int r, int x, int num){ if(l == r){ tr[id].clean(); if(num == (1 << k) - 1) tr[id].ans = 1; for(int i = 0; i < k; i++){ if((num >> i) & 1) tr[id].maxx[i] = x, tr[id].minx[i] = l; } return ; } int mid = (l + r) >> 1; if(x <= mid) change((id << 1), l, mid, x, num); else change(((id << 1) | 1), mid + 1, r, x, num); tr[id] = mymerge(l, mid, r, tr[id << 1], tr[(id << 1) | 1]); } node sum; int nl, nr; void query(int id, int l, int r, int p, int q){ if(p <= l && q >= r){ if(nl == N){ sum = tr[id]; nl = min(nl, l), nr = max(nr, r); return ; } sum = mymerge(nl, nr, r, sum, tr[id]); nl = min(nl, l), nr = max(nr, r); return ; } if(r < p || l > q) return ; int mid = (l + r) >> 1; query((id << 1), l, mid, p, q), query(((id << 1) | 1), mid + 1, r, p, q); } long long getans(int l, int r){ nl = N, nr = 0, sum.clean(); query(1, 1, n, l, r); return sum.ans; } int main(){ ios::sync_with_stdio(0), cin.tie(0); cin >> n >> k; for(int i = 1; i <= n; i++) cin >> a[i]; build(1, 1, n); cin >> q; for(int i = 1, op; i <= q; i++){ cin >> op; if(op == 1){ int j, v; cin >> j >> v; a[j] = v; change(1, 1, n, j, v); } else{ int l, r; cin >> l >> r; int now = getans(l, r); if(now == N) cout << -1 << '\n'; else cout << now << '\n'; } } return 0; } /* 14 6 3 12 15 11 2 1 2 1 3 4 1 2 6 1 5 5 2 4 6 1 5 15 1 3 3 2 1 5 1 3 11 2 2 4 */