結果

問題 No.2901 Logical Sum of Substring
ユーザー vjudge1vjudge1
提出日時 2024-09-25 20:25:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,289 ms / 3,000 ms
コード長 2,536 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 209,052 KB
実行使用メモリ 89,668 KB
最終ジャッジ日時 2024-09-25 20:26:34
合計ジャッジ時間 55,478 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
53,448 KB
testcase_01 AC 19 ms
53,312 KB
testcase_02 AC 22 ms
53,440 KB
testcase_03 AC 23 ms
53,504 KB
testcase_04 AC 23 ms
53,504 KB
testcase_05 AC 23 ms
53,376 KB
testcase_06 AC 23 ms
53,504 KB
testcase_07 AC 23 ms
53,376 KB
testcase_08 AC 2,229 ms
89,664 KB
testcase_09 AC 2,227 ms
89,476 KB
testcase_10 AC 2,199 ms
89,600 KB
testcase_11 AC 2,236 ms
89,512 KB
testcase_12 AC 2,179 ms
89,540 KB
testcase_13 AC 2,229 ms
89,600 KB
testcase_14 AC 2,289 ms
89,600 KB
testcase_15 AC 2,249 ms
89,616 KB
testcase_16 AC 2,237 ms
89,476 KB
testcase_17 AC 2,189 ms
89,472 KB
testcase_18 AC 2,218 ms
89,472 KB
testcase_19 AC 2,186 ms
89,508 KB
testcase_20 AC 2,219 ms
89,472 KB
testcase_21 AC 2,224 ms
89,428 KB
testcase_22 AC 2,218 ms
89,668 KB
testcase_23 AC 2,204 ms
89,540 KB
testcase_24 AC 2,129 ms
89,472 KB
testcase_25 AC 2,187 ms
89,600 KB
testcase_26 AC 1,833 ms
86,016 KB
testcase_27 AC 1,903 ms
85,888 KB
testcase_28 AC 1,863 ms
86,016 KB
testcase_29 AC 1,981 ms
88,192 KB
testcase_30 AC 1,995 ms
88,192 KB
testcase_31 AC 1,984 ms
88,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 2e5 + 5;

struct Node{
  int l, r, sum, minx;
  vector<pair<int, int>>q, p;
}t[N * 4];
int l, r, n, k, x, opt, q, a[N];

Node AND(Node a, Node b){
  Node c;
  c.minx = min(a.minx, b.minx);
  c.sum = a.sum | b.sum;
  for(auto [v, len1] : a.q){
    for(auto [u, len2] : b.p){
      if((u | v) == (1 << k) - 1){
        c.minx = min(c.minx, len1 + len2);
      }
    }
  }
  c.q.clear(), c.p.clear();
  for(auto [v, len1] : a.p){
    //cout << v << ' ' << len1 << '\n';
    c.p.push_back({v, len1});
  }
  for(auto [v, len2] : b.q){
    //cout << v << ' ' << len2 << '\n';
    c.q.push_back({v, len2});
  }
  for(auto [v, len1] : a.q){
    if(!c.q.size() || c.q.back().first != (v | b.sum)){
      c.q.push_back({v | b.sum, len1 + b.r - b.l + 1});
    }
  }
  for(auto [v, len2] : b.p){
    if(!c.p.size() || c.p.back().first != (v | a.sum)){
      c.p.push_back({v | a.sum, len2 + a.r - a.l + 1});
    }
  }
  return c;
}

void renew(int p){
  auto l = t[p].l;
  auto r = t[p].r;
  t[p] = AND(t[p * 2], t[p * 2 + 1]);
  t[p].l = l, t[p].r = r;
}

void build(int p, int l, int r){
  t[p].l = l, t[p].r = r, t[p].minx = 1e9;
  if(l == r)return;
  int mid = (l + r) >> 1;
  build(p * 2, l, mid), build(p * 2 + 1, mid + 1, r);
}

void updata(int p, int l, int x){
  //cout << p << ' ' << t[p].l << ' ' << t[p].r <<' ' << l << '\n';
  if(t[p].l == t[p].r){
    t[p].minx = 1e9;
    t[p].q.clear(), t[p].p.clear();
    t[p].sum = x;
    if(x == (1 << k) - 1){
      t[p].minx = 1;
    }
    t[p].p.push_back({x, 1});
    t[p].q.push_back({x, 1});
    return;
  }
  int mid = (t[p].l + t[p].r) >> 1;
  if(l <= mid)updata(p * 2, l, x);
  if(l > mid)updata(p * 2 + 1, l, x);
  renew(p);
}

Node getmin(int p, int l, int r){
  //cout << p << ' ' << t[p].l << ' ' << t[p].r << ' ' << t[p].minx << '\n';
  if(l <= t[p].l && r >= t[p].r){
    return t[p];
  }
  int mid = (t[p].l + t[p].r) >> 1;
  if(l <= mid){
    if(r > mid){
      return AND(getmin(p * 2, l, r), getmin(p * 2 + 1, l, r));
    }
    return getmin(p * 2, l, r);
  }
  return getmin(p * 2 + 1, l, r);
}

int main(){
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n >> k;
  build(1, 1, n);
  for(int i = 1; i <= n; ++i){
    cin >> a[i];
    updata(1, i, a[i]);
  }
  cin >> q;
  while(q--){
    cin >> opt;
    if(opt == 1){
      cin >> l >> x;
      updata(1, l, x);
    }
    else{
      cin >> l >> r;
      auto ppq = getmin(1, l, r);
      cout << (ppq.minx == 1e9 ? -1 : ppq.minx) << '\n';
    }
  }
  return 0;
}
0