結果

問題 No.2103 ±1s Game
ユーザー tnakao0123tnakao0123
提出日時 2024-07-18 18:06:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 651 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 43,520 KB
実行使用メモリ 814,336 KB
最終ジャッジ日時 2024-07-18 18:06:46
合計ジャッジ時間 2,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 MLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
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 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2103.cc:  No.2103 ツア1s Game - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* subroutines */

bool check(int x, int y, int k, int p) {
  int n = x + y - k;
  if (n & 1) {
    bool f1 =
      (x > 0 && check(x - 1, y, k - 1, -p)) ||
      (y > 0 && check(x, y - 1, k - 1, -p));
    return ! f1;
  }

  int h = n / 2;
  if (y <= h) return p > 0;
  if (x <= h) return ((y & 1) == (p > 0 ? 0 : 1));
  return false;
}

/* main */

int main() {
  int x, y, k, p;
  scanf("%d%d%d%d", &x, &y, &k, &p);

  bool f0 = check(x, y, k, p);
  if (f0) puts("Alice");
  else puts("Bob");

  return 0;
}
0