結果

問題 No.2521 Don't be Same
ユーザー 👑 hos.lyrichos.lyric
提出日時 2023-10-27 22:18:19
言語 D
(dmd 2.106.1)
結果
RE  
実行時間 -
コード長 2,966 bytes
コンパイル時間 729 ms
コンパイル使用メモリ 109,368 KB
実行使用メモリ 24,576 KB
平均クエリ数 2.61
最終ジャッジ日時 2023-10-27 22:18:26
合計ジャッジ時間 5,802 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
24,564 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 53 ms
24,576 KB
testcase_11 AC 53 ms
24,576 KB
testcase_12 AC 65 ms
24,576 KB
testcase_13 AC 56 ms
24,576 KB
testcase_14 AC 55 ms
24,576 KB
testcase_15 AC 54 ms
24,576 KB
testcase_16 AC 52 ms
24,576 KB
testcase_17 AC 52 ms
24,576 KB
testcase_18 AC 52 ms
24,576 KB
testcase_19 AC 52 ms
24,576 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 53 ms
24,576 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, 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; }

string COLOR(string s = "") { return "\x1b[" ~ s ~ "m"; }

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)); }



bool solve(int x, int y) {
  if (x > y) swap(x, y);
  return !((x == 0 && y == 0) || x + 1 == y && x % 2 != 0);
}

void main() {
  debug {{
    enum lim = 40;
    auto dp = new bool[][](lim, lim);
    foreach (x; 0 .. lim) foreach (y; 0 .. lim) {
      foreach (xx; 0 .. x) if (!dp[xx][y]) dp[x][y] = true;
      foreach (yy; 0 .. y) if (!dp[x][yy]) dp[x][y] = true;
      if (x && x == y) dp[x][y] = true;
    }
    foreach (x; 0 .. lim) {
      foreach (y; 0 .. lim) write(dp[x][y] ? 1 : 0);
      writeln;
    }
    foreach (x; 0 .. lim) foreach (y; 0 .. lim) {
      assert(dp[x][y] == (solve(x, y) ? 1 : 0));
    }
  }}
  
  int x = readInt;
  int y = readInt;
  int turn = solve(x, y) ? 1 : 0;
  writeln(turn ? "First" : "Second");
  stdout.flush;
  for (; ; turn ^= 1) {
    if (turn) {
      if (x && x == y) {
        writeln("B");
        stdout.flush;
        x = y = 0;
      } else {
        bool check(int xx, int yy) {
          if (0 <= xx && xx < x && yy == y) {
            writeln("A 1 ", x - xx);
            stdout.flush;
            x = xx;
            return true;
          }
          if (0 <= yy && yy < y && xx == x) {
            writeln("A 2 ", y - yy);
            stdout.flush;
            y = yy;
            return true;
          }
          return false;
        }
        if (check(0, 0)) continue;
        if (check(x, x - 1)) continue;
        if (check(x, x + 1)) continue;
        if (check(y - 1, y)) continue;
        if (check(y + 1, y)) continue;
return;        assert(false);
      }
    } else {
      const o = readToken;
      if (o == "A") {
        const i = readInt;
        const z = readInt;
        ((i == 1) ? x : y) -= z;
      } else if (o == "C") {
        break;
      } else {
        assert(false);
      }
    }
  }
}
0