結果

問題 No.2901 Logical Sum of Substring
ユーザー vjudge1vjudge1
提出日時 2024-10-07 23:31:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 432 ms / 3,000 ms
コード長 2,645 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 209,136 KB
実行使用メモリ 149,808 KB
最終ジャッジ日時 2024-10-07 23:31:38
合計ジャッジ時間 13,776 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 5 ms
6,816 KB
testcase_03 AC 6 ms
6,816 KB
testcase_04 AC 5 ms
6,820 KB
testcase_05 AC 6 ms
6,820 KB
testcase_06 AC 6 ms
6,816 KB
testcase_07 AC 6 ms
6,816 KB
testcase_08 AC 365 ms
149,068 KB
testcase_09 AC 357 ms
148,264 KB
testcase_10 AC 399 ms
149,076 KB
testcase_11 AC 432 ms
148,268 KB
testcase_12 AC 408 ms
149,808 KB
testcase_13 AC 412 ms
149,032 KB
testcase_14 AC 426 ms
149,296 KB
testcase_15 AC 428 ms
148,400 KB
testcase_16 AC 430 ms
149,464 KB
testcase_17 AC 387 ms
148,352 KB
testcase_18 AC 390 ms
148,480 KB
testcase_19 AC 395 ms
148,352 KB
testcase_20 AC 387 ms
148,352 KB
testcase_21 AC 388 ms
148,480 KB
testcase_22 AC 386 ms
148,480 KB
testcase_23 AC 374 ms
148,480 KB
testcase_24 AC 352 ms
148,480 KB
testcase_25 AC 348 ms
148,480 KB
testcase_26 AC 333 ms
148,608 KB
testcase_27 AC 336 ms
148,352 KB
testcase_28 AC 333 ms
148,608 KB
testcase_29 AC 387 ms
148,352 KB
testcase_30 AC 389 ms
148,480 KB
testcase_31 AC 386 ms
148,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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
*/
0