結果

問題 No.2901 Logical Sum of Substring
ユーザー vjudge1vjudge1
提出日時 2024-09-25 20:10:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,461 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 215,556 KB
実行使用メモリ 139,264 KB
最終ジャッジ日時 2024-09-25 20:10:20
合計ジャッジ時間 8,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 2e5 + 5;

struct Node{
  int l, r, sum, minx;
  map<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[v] = len1;
  }
  for(auto [v, len2] : b.q){
    //cout << v << ' ' << len2 << '\n';
    c.q[v] = len2;
  }
  for(auto [v, len1] : a.q){
    if(!c.q.count(v | b.sum) || c.q[v | b.sum] > len1 + b.r - b.l + 1){
      c.q[v | b.sum] = len1 + b.r - b.l + 1;
    }
  }
  for(auto [v, len2] : b.p){
    if(!c.p.count(v | a.sum) || c.p[v | a.sum] > len2 + a.r - a.l + 1){
      c.p[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[x] = 1, t[p].q[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, sum = 1e9;
  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(){
  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