結果

問題 No.2901 Logical Sum of Substring
ユーザー vjudge1vjudge1
提出日時 2024-09-25 16:45:58
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,896 bytes
コンパイル時間 3,587 ms
コンパイル使用メモリ 163,220 KB
実行使用メモリ 75,992 KB
最終ジャッジ日時 2024-09-25 16:46:09
合計ジャッジ時間 9,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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(m.maxx[i] != -N) v.push_back(m.maxx[i]);
    if(m.minx[i] != N) v.push_back(m.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;
    }
    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;
    }
    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
*/
0