結果
問題 | No.2658 L-R Nim |
ユーザー | てんぷら |
提出日時 | 2024-02-29 01:18:39 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,039 bytes |
コンパイル時間 | 5,319 ms |
コンパイル使用メモリ | 312,092 KB |
実行使用メモリ | 563,968 KB |
最終ジャッジ日時 | 2024-09-29 12:33:32 |
合計ジャッジ時間 | 44,045 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
11,444 KB |
testcase_01 | AC | 6 ms
11,396 KB |
testcase_02 | AC | 6 ms
11,464 KB |
testcase_03 | AC | 6 ms
11,404 KB |
testcase_04 | AC | 6 ms
11,404 KB |
testcase_05 | AC | 225 ms
99,804 KB |
testcase_06 | AC | 7 ms
11,476 KB |
testcase_07 | AC | 221 ms
99,796 KB |
testcase_08 | AC | 230 ms
99,796 KB |
testcase_09 | AC | 222 ms
99,872 KB |
testcase_10 | AC | 7 ms
11,492 KB |
testcase_11 | AC | 222 ms
99,928 KB |
testcase_12 | AC | 7 ms
11,504 KB |
testcase_13 | AC | 7 ms
11,436 KB |
testcase_14 | AC | 7 ms
11,436 KB |
testcase_15 | AC | 228 ms
99,792 KB |
testcase_16 | AC | 7 ms
11,444 KB |
testcase_17 | AC | 222 ms
99,856 KB |
testcase_18 | AC | 221 ms
99,896 KB |
testcase_19 | AC | 7 ms
11,548 KB |
testcase_20 | AC | 224 ms
99,792 KB |
testcase_21 | AC | 7 ms
11,512 KB |
testcase_22 | AC | 7 ms
11,468 KB |
testcase_23 | AC | 221 ms
99,796 KB |
testcase_24 | AC | 223 ms
99,904 KB |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | AC | 10 ms
11,712 KB |
testcase_34 | MLE | - |
testcase_35 | TLE | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
ソースコード
#include <atcoder/all> #include <bits/stdc++.h> using ll = long long; using ull = unsigned long long; #define rep(i, n) for(int i = 0; i < (int)(n); i++) #define REP(i, m, n) for(int i = (int)(m); i < (int)(n); i++) using namespace std; using namespace atcoder; using mint = modint998244353; const int inf = 1000000007; const ll longinf = 1ll << 60; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, k; cin >> n >> k; vector<int> a(n); rep(i, n) cin >> a[i]; vector<int> s(n + 1); rep(i, n) s[i + 1] = s[i] ^ a[i]; int m = 1 << 20; vector<int> l(m, -1), r(m, -1); int left = -1, right = n + 1; rep(i, n + 1) { if(r[s[i]] != -1) { left = max(left, r[s[i]]); right = min(right, i); } r[s[i]] = i; if(l[s[i]] == -1) { l[s[i]] = i; } } if(left >= right) { cout << "No" << endl; return 0; } if(left == -1) { cout << "Yes" << endl; return 0; } vector ng(n + 1, vector(128, vector(14, 0))); rep(i, n + 1) { rep(j, 128) { rep(k, 14) { int v = j | ((1 << k) - 1) << 7; int li = l[s[i] ^ v], ri = r[s[i] ^ v]; if(li != -1 && li < i) { ng[li][j][k]++; ng[i][j][k]--; } if(ri != -1 && i < ri) { ng[i][j][k]++; ng[ri][j][k]--; } } } } rep(i, n) rep(j, 128) rep(k, 14) ng[i + 1][j][k] += ng[i][j][k]; bool can = false; REP(i, left, right) { for(int j = max(1, a[i] - k); j <= a[i] + k; j++) { int v = j ^ a[i]; int c = 0; while(v >> (7 + c) & 1) { v ^= 1 << (7 + c); ++c; } if(!ng[i][v][c]) { can = true; } } } cout << (can ? "Yes" : "No") << endl; return 0; }