結果
問題 | No.2901 Logical Sum of Substring |
ユーザー | vjudge1 |
提出日時 | 2024-09-26 11:17:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 527 ms / 3,000 ms |
コード長 | 2,645 bytes |
コンパイル時間 | 1,841 ms |
コンパイル使用メモリ | 164,332 KB |
実行使用メモリ | 148,352 KB |
最終ジャッジ日時 | 2024-09-26 11:17:37 |
合計ジャッジ時間 | 14,768 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 444 ms
148,352 KB |
testcase_09 | AC | 445 ms
148,352 KB |
testcase_10 | AC | 447 ms
148,352 KB |
testcase_11 | AC | 507 ms
148,352 KB |
testcase_12 | AC | 502 ms
148,352 KB |
testcase_13 | AC | 512 ms
148,352 KB |
testcase_14 | AC | 525 ms
148,224 KB |
testcase_15 | AC | 525 ms
148,224 KB |
testcase_16 | AC | 527 ms
148,352 KB |
testcase_17 | AC | 489 ms
148,352 KB |
testcase_18 | AC | 483 ms
148,352 KB |
testcase_19 | AC | 487 ms
148,352 KB |
testcase_20 | AC | 481 ms
148,352 KB |
testcase_21 | AC | 483 ms
148,224 KB |
testcase_22 | AC | 483 ms
148,352 KB |
testcase_23 | AC | 446 ms
148,352 KB |
testcase_24 | AC | 438 ms
148,352 KB |
testcase_25 | AC | 435 ms
148,352 KB |
testcase_26 | AC | 421 ms
148,352 KB |
testcase_27 | AC | 423 ms
148,352 KB |
testcase_28 | AC | 423 ms
148,352 KB |
testcase_29 | AC | 478 ms
148,224 KB |
testcase_30 | AC | 480 ms
148,352 KB |
testcase_31 | AC | 481 ms
148,224 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long const int N = 2e5 + 5, M = 17, INF = 1e18; int n, k, a[N], q; struct node { int ans, maxi[M], mini[M]; void clean() { ans = INF; for (int i = 0; i <= k; i++) { maxi[i] = -INF; mini[i] = INF; } } }tr[N * 4], CANT, tmp; node Merge(node l, node r) { node m; m.clean(); m.ans = min(l.ans, r.ans); vector<int> v; for (int i = 0; i <= k; i++) { m.maxi[i] = max(l.maxi[i], r.maxi[i]); m.mini[i] = min(l.mini[i], r.mini[i]); if (l.maxi[i] != -INF) { v.push_back(l.maxi[i]); } if (r.mini[i] != INF) { v.push_back(r.mini[i]); } } if (m.ans == 1) { return m; } sort(v.begin(), v.end()); for (int i = 0; i < v.size(); i++) { int tot = 0; for (int j = i; j < v.size(); j++) { tot |= a[v[j]]; if (tot == ((1 << k) - 1)) { m.ans = min(m.ans, v[j] - v[i] + 1); break; } } } return m; } void build(int i, int l, int r) { if (l == r) { tr[i].clean(); if (a[l] == ((1 << k) - 1)) { tr[i].ans = 1; } for (int j = 0; j <= k; j++) { if ((a[l] & (1 << j))) { tr[i].maxi[j] = l, tr[i].mini[j] = l; } } return ; } int mid = (l + r) >> 1; build(i * 2, l, mid); build(i * 2 + 1, mid + 1, r); tr[i] = Merge(tr[i * 2], tr[i * 2 + 1]); } void change(int i, int l, int r, int p, int x) { if (l == r) { a[l] = x; tr[i].clean(); if (a[l] == ((1 << k) - 1)) { tr[i].ans = 1; } for (int j = 0; j <= k; j++) { if ((a[l] & (1 << j))) { tr[i].maxi[j] = l, tr[i].mini[j] = l; } } return ; } int mid = (l + r) >> 1; if (mid >= p) { change(i * 2, l, mid, p, x); } else change(i * 2 + 1, mid + 1, r, p, x); tr[i] = Merge(tr[i * 2], tr[i * 2 + 1]); } void query(int i, int l, int r, int x, int y) { if (l > y || r < x) { return ; } if (l >= x && r <= y) { tmp = Merge(tmp, tr[i]); return ; } int mid = (l + r) >> 1; query(i * 2, l, mid, x, y); query(i * 2 + 1, mid + 1, r, x, y); } signed main() { ios::sync_with_stdio(0); cin.tie(0); CANT.clean(); cin >> n >> k; for (int i = 1; i <= n; i++) { cin >> a[i]; } build(1, 1, n); cin >> q; while (q--) { int opt, x, y; cin >> opt >> x >> y; if (opt == 1) { change(1, 1, n, x, y); } else { tmp.clean(); query(1, 1, n, x, y); if (tmp.ans == INF) { cout << "-1\n"; } else cout << tmp.ans << "\n"; } } return 0; } /* 6 4 14 12 15 12 13 11 5 2 1 2 1 3 4 1 2 6 1 5 5 2 4 6 */