結果
問題 | No.2901 Logical Sum of Substring |
ユーザー | vjudge1 |
提出日時 | 2024-09-25 18:27:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,054 bytes |
コンパイル時間 | 2,451 ms |
コンパイル使用メモリ | 201,000 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-25 18:27:21 |
合計ジャッジ時間 | 7,240 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 124 ms
5,376 KB |
testcase_09 | AC | 127 ms
5,376 KB |
testcase_10 | AC | 131 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 | -- | - |
ソースコード
#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(j - i + 1 >= ans){ Insert(a[i], -1); i++; } } if(cnt == k){ ans = min(ans, j - i); } Insert(a[i], -1); } cout << (ans == 1e9 ? -1 : ans) << '\n'; } } return 0; }