結果

問題 No.2103 ±1s Game
ユーザー KudeKude
提出日時 2022-10-21 21:40:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,259 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 224,332 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-01 06:18:25
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic pop
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int x, y, k, p;
  cin >> x >> y >> k >> p;
  p = p == -1;
  int t = x + y - k;
  int a = (t + 1) / 2;
  int b = t / 2;
  if (t % 2 == 0) {
    bool a_win = false;
    if (a >= x && k % 2 == p) a_win = true;
    if (a >= y && p == 0) a_win = true;
    cout << (a_win ? "Alice\n" : "Bob\n");
  } else {
    bool b_win = false;
    if (b >= x && k % 2 == !p) b_win = true;
    if (b >= y && p == 1) b_win = true;
    cout << (!b_win ? "Alice\n" : "Bob\n");
  }
}
0