結果

問題 No.2901 Logical Sum of Substring
ユーザー vjudge1vjudge1
提出日時 2024-09-25 18:16:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 963 bytes
コンパイル時間 2,915 ms
コンパイル使用メモリ 200,788 KB
実行使用メモリ 10,912 KB
最終ジャッジ日時 2024-09-25 18:17:01
合計ジャッジ時間 8,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 133 ms
5,376 KB
testcase_09 AC 134 ms
5,376 KB
testcase_10 AC 137 ms
5,376 KB
testcase_11 TLE -
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;

int a[N], c[N], cnt, l, r, x, q, n, k, opt, ans;

void Insert(int x, int id){
  for(int i = 0; i < k; ++i){
    if(x & (1 << i)){
      if(id == 1){
        cnt += !c[i];
        c[i]++;
      }
      else{
        cnt -= (c[i] == 1);
        c[i]--;
      }
    }
  }
}

int main(){
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n >> k;
  for(int i = 1; i <= n; ++i){
    cin >> a[i];
  }
  cin >> q;
  while(q--){
    cin >> opt;
    if(opt == 1){
      cin >> l >> x;
      a[l] = x;
    }
    else{
      cin >> l >> r;
      for(int i = 0; i < k; ++i){
        c[i] = 0;
      }
      ans = 1e9;
      for(int i = l, j = l; i <= r; ++i){
        for(; j <= r && cnt != k; j++){
          Insert(a[j], 1);
        }
        if(cnt == k){
          ans = min(ans, j - i);
        }
        Insert(a[i], -1);
      }
      cout << (ans == 1e9 ? -1 : ans) << '\n';
    }
  }
  return 0;
}
0