結果

問題 No.102 トランプを奪え
ユーザー kk
提出日時 2021-04-19 06:04:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 5,000 ms
コード長 1,529 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 203,968 KB
実行使用メモリ 491,072 KB
最終ジャッジ日時 2024-07-04 04:58:05
合計ジャッジ時間 5,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
490,984 KB
testcase_01 AC 228 ms
491,072 KB
testcase_02 AC 226 ms
491,016 KB
testcase_03 AC 225 ms
491,012 KB
testcase_04 AC 224 ms
490,952 KB
testcase_05 AC 231 ms
491,008 KB
testcase_06 AC 232 ms
490,876 KB
testcase_07 AC 227 ms
490,956 KB
testcase_08 AC 236 ms
490,992 KB
testcase_09 AC 353 ms
490,936 KB
testcase_10 AC 344 ms
490,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int dp[14][14][14][14][57][57];

int solve(int x, int y, int z, int w, int me, int you, int all) {
  if (dp[x][y][z][w][me][you] != -1)
    return dp[x][y][z][w][me][you];

  if (x + y + z + w == 0)
    return me;
  int ret = 0;
  
  for (int i = 1; i <= 3 && x >= i; i++) {
    if (i == x)
      ret = max(ret, all-solve(x-i, y, z, w, you/2, me+i+you-you/2, all));
    else
      ret = max(ret, all-solve(x-i, y, z, w, you, me+i, all));
  }

  for (int i = 1; i <= 3 && y >= i; i++) {
    if (i == y)
      ret = max(ret, all-solve(x, y-i, z, w, you/2, me+i+you-you/2, all));
    else
      ret = max(ret, all-solve(x, y-i, z, w, you, me+i, all));
  }

  for (int i = 1; i <= 3 && z >= i; i++) {
    if (i == z)
      ret = max(ret, all-solve(x, y, z-i, w, you/2, me+i+you-you/2, all));
    else
      ret = max(ret, all-solve(x, y, z-i, w, you, me+i, all));
  }

  for (int i = 1; i <= 3 && w >= i; i++) {
    if (i == w)
      ret = max(ret, all-solve(x, y, z, w-i, you/2, me+i+you-you/2, all));
    else
      ret = max(ret, all-solve(x, y, z, w-i, you, me+i, all));
  }

  return dp[x][y][z][w][me][you] = ret;
}


int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  memset(dp, -1, sizeof(dp));
  
  int x, y, z, w;
  cin >> x >> y >> z >> w;

  int me = solve(x, y, z, w, 0, 0, x+y+z+w);
  int you = x + y + z + w - me;
  if (me > you)
    cout << "Taro" << endl;
  else if (you > me)
    cout << "Jiro" << endl;
  else
    cout << "Draw" << endl;
  
  return 0;
}
0