結果

問題 No.102 トランプを奪え
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-30 21:40:21
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 852 ms / 5,000 ms
コード長 2,365 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 106,264 KB
実行使用メモリ 26,208 KB
最終ジャッジ日時 2023-09-03 23:30:40
合計ジャッジ時間 3,528 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
13,460 KB
testcase_01 AC 18 ms
13,892 KB
testcase_02 AC 34 ms
15,368 KB
testcase_03 AC 17 ms
13,480 KB
testcase_04 AC 17 ms
13,460 KB
testcase_05 AC 83 ms
25,804 KB
testcase_06 AC 71 ms
25,076 KB
testcase_07 AC 32 ms
15,252 KB
testcase_08 AC 95 ms
26,208 KB
testcase_09 AC 852 ms
25,788 KB
testcase_10 AC 767 ms
26,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.container, std.math, std.numeric, std.range, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


int[][][][][] cache;

int calc(int[4] a, int x, int y) {
  if (cache[a[0]][a[1]][a[2]][a[3]][x] == -2) {
    int ret;
    if (a[0] == 0 && a[1] == 0 && a[2] == 0 && a[3] == 0) {
      ret = sgn(x - y);
    } else {
      ret = -2;
      foreach (i; 0 .. 4) {
        foreach (k; 1 .. 4) {
          if (a[i] >= k) {
            int[4] aa = a.dup;
            int xx = x, yy = y;
            aa[i] -= k;
            xx += k;
            if (aa[i] == 0) {
              xx += (yy + 1) / 2;
              yy -= (yy + 1) / 2;
            }
            chmax(ret, -calc(aa, yy, xx));
          }
        }
      }
      assert(ret != -2);
    }
    cache[a[0]][a[1]][a[2]][a[3]][x] = ret;
  }
  return cache[a[0]][a[1]][a[2]][a[3]][x];
}

void main() {
  try {
    for (; ; ) {
      int[4] N;
      foreach (i; 0 .. 4) {
        N[i] = readInt();
      }
      cache = new int[][][][][](14, 14, 14, 14, 53);
      foreach (a0; 0 .. 14)
      foreach (a1; 0 .. 14)
      foreach (a2; 0 .. 14)
      foreach (a3; 0 .. 14)
      foreach (x; 0 .. 53)
      {
        cache[a0][a1][a2][a3][x] = -2;
      }
      const ans = calc(N, 0, 0);
      writeln((ans > 0) ? "Taro" : (ans < 0) ? "Jiro" : "Draw");
    }
  } catch (EOFException e) {
  }
}
0