結果
| 問題 |
No.102 トランプを奪え
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-01-30 21:40:21 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
AC
|
| 実行時間 | 874 ms / 5,000 ms |
| コード長 | 2,365 bytes |
| コンパイル時間 | 1,305 ms |
| コンパイル使用メモリ | 120,232 KB |
| 実行使用メモリ | 25,632 KB |
| 最終ジャッジ日時 | 2024-06-13 04:03:23 |
| 合計ジャッジ時間 | 4,219 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 |
ソースコード
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) {
}
}