結果

問題 No.2103 ±1s Game
ユーザー hitonanodehitonanode
提出日時 2022-09-03 23:41:33
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 774 bytes
コンパイル時間 710 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 15:15:09
合計ジャッジ時間 2,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

void Alice() {
    puts("Alice");
    exit(0);
}

void Bob() {
    puts("Bob");
    exit(0);
}

int main() {
    int X, Y, K, P;
    cin >> X >> Y >> K >> P;

    int parity_y = (P > 0 ? 0 : 1);

    int rem = X + Y - K;

    if (rem % 2) {
        // 最後に先手がやる
        int n_gote = rem / 2;

        if (n_gote >= X and K % 2 != parity_y) Bob();
        if (n_gote >= Y and parity_y == 1) Bob();

        if (X == Y and n_gote + 1 == X and parity_y == 1 and K % 2 == 0) Bob();

        Alice();
    } else {
        // 最後に後手がやる
        int n_sente = (rem + 1) / 2;
        if (n_sente >= X and K % 2 == parity_y) Alice();
        if (n_sente >= Y and parity_y == 0) Alice();

        Bob();
    }
}
0