結果
問題 | No.2658 L-R Nim |
ユーザー | 👑 Nachia |
提出日時 | 2024-01-27 17:21:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,038 bytes |
コンパイル時間 | 830 ms |
コンパイル使用メモリ | 77,904 KB |
実行使用メモリ | 19,596 KB |
最終ジャッジ日時 | 2024-09-29 12:31:20 |
合計ジャッジ時間 | 11,802 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
18,796 KB |
testcase_01 | AC | 7 ms
18,824 KB |
testcase_02 | AC | 6 ms
18,988 KB |
testcase_03 | AC | 7 ms
18,792 KB |
testcase_04 | AC | 6 ms
18,792 KB |
testcase_05 | AC | 97 ms
18,952 KB |
testcase_06 | AC | 87 ms
18,916 KB |
testcase_07 | AC | 42 ms
18,932 KB |
testcase_08 | AC | 227 ms
18,916 KB |
testcase_09 | AC | 94 ms
19,008 KB |
testcase_10 | AC | 70 ms
18,996 KB |
testcase_11 | AC | 78 ms
18,960 KB |
testcase_12 | AC | 85 ms
19,060 KB |
testcase_13 | AC | 66 ms
18,960 KB |
testcase_14 | AC | 89 ms
19,040 KB |
testcase_15 | AC | 128 ms
18,920 KB |
testcase_16 | AC | 71 ms
18,936 KB |
testcase_17 | AC | 71 ms
18,788 KB |
testcase_18 | AC | 86 ms
19,012 KB |
testcase_19 | AC | 66 ms
19,008 KB |
testcase_20 | AC | 102 ms
19,036 KB |
testcase_21 | AC | 58 ms
19,116 KB |
testcase_22 | AC | 58 ms
18,956 KB |
testcase_23 | AC | 55 ms
19,052 KB |
testcase_24 | AC | 102 ms
18,916 KB |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
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 | -- | - |
ソースコード
// 00:19:18 #include <iostream> #include <string> #include <vector> #include <algorithm> #include <utility> using namespace std; using i64 = long long; using u64 = unsigned long long; #define rep(i,n) for(i64 i=0; i<(i64)(n); i++) #define repr(i,n) for(i64 i=(i64)(n)-1; i>=0; i--) int main(){ i64 N, K; cin >> N >> K; vector<i64> A(N); rep(i,N) cin >> A[i]; vector<i64> XOR(N+1); rep(i,N) XOR[i+1] = XOR[i] ^ A[i]; i64 l = 0, r = N; rep(i,N+1) rep(j,i) if(XOR[i] == XOR[j]){ l = max(l, j); r = min(r, i); } vector<i64> C(2001001); bool ok = false; for(i64 i=0; i<=l; i++) for(i64 j=l+1; j<=N; j++) C[XOR[i]^XOR[j]]++; for(i64 p=l; p<r; p++){ if(p != l){ for(i64 i=0; i<p; i++) C[XOR[i]^XOR[p]]--; for(i64 i=p+1; i<=N; i++) C[XOR[p]^XOR[i]]++; } for(i64 d=-min(A[p],K); d<=K; d++){ i64 dx = A[p] ^ (A[p] + d); if(C[dx] == 0) ok = true; } } cout << (ok ? "Yes\n" : "No\n"); return 0; }