結果
問題 | No.2278 Time Bomb Game 2 |
ユーザー | startcpp |
提出日時 | 2023-04-22 04:11:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,975 bytes |
コンパイル時間 | 688 ms |
コンパイル使用メモリ | 68,092 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 20:01:17 |
合計ジャッジ時間 | 3,226 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | WA | - |
testcase_06 | AC | 4 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | AC | 5 ms
6,816 KB |
testcase_09 | AC | 8 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 9 ms
6,816 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 8 ms
6,816 KB |
testcase_24 | AC | 9 ms
6,820 KB |
testcase_25 | AC | 6 ms
6,816 KB |
testcase_26 | AC | 6 ms
6,816 KB |
testcase_27 | AC | 6 ms
6,820 KB |
testcase_28 | AC | 6 ms
6,816 KB |
testcase_29 | AC | 7 ms
6,816 KB |
testcase_30 | AC | 7 ms
6,816 KB |
testcase_31 | AC | 9 ms
6,816 KB |
testcase_32 | AC | 8 ms
6,820 KB |
testcase_33 | AC | 8 ms
6,820 KB |
testcase_34 | AC | 7 ms
6,816 KB |
testcase_35 | AC | 6 ms
6,816 KB |
testcase_36 | AC | 8 ms
6,820 KB |
testcase_37 | WA | - |
testcase_38 | AC | 7 ms
6,820 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 7 ms
6,816 KB |
testcase_42 | WA | - |
testcase_43 | AC | 8 ms
6,820 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 8 ms
6,820 KB |
testcase_50 | AC | 6 ms
6,816 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | AC | 8 ms
6,816 KB |
testcase_55 | WA | - |
testcase_56 | AC | 6 ms
6,816 KB |
testcase_57 | AC | 7 ms
6,816 KB |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | AC | 7 ms
6,816 KB |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | WA | - |
testcase_67 | WA | - |
testcase_68 | AC | 6 ms
6,820 KB |
testcase_69 | AC | 7 ms
6,820 KB |
testcase_70 | AC | 8 ms
6,816 KB |
testcase_71 | WA | - |
ソースコード
//実験を書くのが思ったより面倒くさいけど、S[k]='A', T:偶数のパターンだけ考えれば難しくない。 //最初に訪れるBまでの距離が偶数なら、遅延行為をすることでT=0の時点でBに押し付けられるのでA勝ち。 //最初に訪れるBまでの距離が奇数なら、どうやっても奇数ターンでBに到達して、Aに押し付けられるのでA負け。 //注意点1: S[k] = 'B'でSをFlipするケースでは、勝者もFlipする必要がある。 //注意点2: T:奇数で初手移動する場合、先にSをFlipしてしまうと移動先がBになりうるので、移動してからSをFlipする必要がある。 //注意点3: 右や左にBが無いケースは弾かなければならない。 #include <iostream> using namespace std; string flip(string s) { string ret; for (int i = 0; i < s.length(); i++) ret += ((s[i] == 'A') ? 'B' : 'A'); return ret; } //Aliceが勝てるか? bool check(string s, int K, int T) { bool is_flip = false; if (s[K] == 'B') { s = flip(s); is_flip = true; } int left; for (left = K; left >= 0; left--) if (s[left] == 'B') break; int dist = K - left; if (left >= 0 && dist % 2 == 0 && dist <= T) { return is_flip; } int right; for (right = K; right < s.length(); right++) if (s[right] == 'B') break; dist = right - K; if (right < s.length() && dist % 2 == 0 && dist <= T) { return is_flip; } return !is_flip; } int main() { int n, K, T; string s; cin >> n >> K >> T >> s; K--; bool ans; if (T % 2 == 1) { if (s[K] == 'A') { ans = true; if (K > 0) { ans |= check(s, K - 1, T - 1); } if (K + 1 < n) { ans |= check(s, K + 1, T - 1); } } else { ans = false; if (K > 0) { ans &= check(s, K - 1, T - 1); } if (K + 1 < n) { ans &= check(s, K + 1, T - 1); } } } else { ans = check(s, K, T); } if (ans) cout << "Alice" << endl; else cout << "Bob" << endl; return 0; }