結果

問題 No.2901 Logical Sum of Substring
ユーザー vjudge1vjudge1
提出日時 2024-09-25 16:56:47
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 706 ms / 3,000 ms
コード長 2,955 bytes
コンパイル時間 3,386 ms
コンパイル使用メモリ 163,720 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-09-25 16:57:06
合計ジャッジ時間 19,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 7 ms
6,940 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 7 ms
6,940 KB
testcase_06 AC 8 ms
6,940 KB
testcase_07 AC 8 ms
6,944 KB
testcase_08 AC 545 ms
75,792 KB
testcase_09 AC 554 ms
75,848 KB
testcase_10 AC 557 ms
75,776 KB
testcase_11 AC 671 ms
75,776 KB
testcase_12 AC 670 ms
75,904 KB
testcase_13 AC 671 ms
75,776 KB
testcase_14 AC 699 ms
75,776 KB
testcase_15 AC 706 ms
75,776 KB
testcase_16 AC 698 ms
75,776 KB
testcase_17 AC 639 ms
75,776 KB
testcase_18 AC 644 ms
75,776 KB
testcase_19 AC 633 ms
75,776 KB
testcase_20 AC 633 ms
75,648 KB
testcase_21 AC 630 ms
75,776 KB
testcase_22 AC 630 ms
75,776 KB
testcase_23 AC 555 ms
75,776 KB
testcase_24 AC 556 ms
75,776 KB
testcase_25 AC 550 ms
75,776 KB
testcase_26 AC 519 ms
75,776 KB
testcase_27 AC 523 ms
75,776 KB
testcase_28 AC 514 ms
75,776 KB
testcase_29 AC 620 ms
75,776 KB
testcase_30 AC 614 ms
75,776 KB
testcase_31 AC 615 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0