結果

問題 No.1770 N言っちゃダメゲーム (6)
ユーザー 👑 hos.lyrichos.lyric
提出日時 2021-12-02 13:40:10
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 2,822 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 121,508 KB
実行使用メモリ 11,364 KB
最終ジャッジ日時 2024-06-22 13:32:48
合計ジャッジ時間 3,157 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,948 KB
testcase_06 AC 35 ms
10,272 KB
testcase_07 AC 36 ms
11,364 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 28 ms
8,780 KB
testcase_11 AC 29 ms
8,468 KB
testcase_12 AC 29 ms
8,640 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 41 ms
8,340 KB
testcase_29 AC 17 ms
6,940 KB
testcase_30 AC 35 ms
7,868 KB
testcase_31 AC 15 ms
6,948 KB
testcase_32 AC 42 ms
10,852 KB
testcase_33 AC 44 ms
9,700 KB
testcase_34 AC 46 ms
11,264 KB
testcase_35 AC 43 ms
10,076 KB
testcase_36 AC 44 ms
11,084 KB
testcase_37 AC 43 ms
9,884 KB
testcase_38 AC 42 ms
10,092 KB
testcase_39 AC 43 ms
10,692 KB
testcase_40 AC 44 ms
10,424 KB
testcase_41 AC 42 ms
10,832 KB
testcase_42 AC 40 ms
9,688 KB
testcase_43 AC 40 ms
9,612 KB
testcase_44 AC 28 ms
7,528 KB
testcase_45 AC 43 ms
10,112 KB
testcase_46 AC 48 ms
10,156 KB
権限があれば一括ダウンロードができます

ソースコード

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


/*
  -2: all 0
  -1: all 1
*/
int[] solve(int N, int K) {
  auto dp = new int[N + 1];
  auto kss = new int[][N + 1];
  foreach (n; 0 .. N + 1) {
    if (kss[n].length == 0) {
      dp[n] = -2;
      foreach (k; 1 .. K + 1) {
        if (n + k <= N) {
          kss[n + k] ~= k;
        }
      }
    } else if (kss[n].length == 1) {
      const k = kss[n][0];
      dp[n] = k;
      if (n + k <= N) {
        kss[n + k] ~= k;
      }
    } else {
      dp[n] = -1;
    }
  }
  return dp;
}

void main() {
  debug {{
    enum lim = 20;
    foreach (k; 1 .. 10 + 1) {
      writeln("k = ", k);
      auto dp = new bool[][](lim + 1, k + 1);
      foreach (n; 0 .. lim + 1) {
        foreach (a; 0 .. k + 1) {
          foreach (b; 1 .. k + 1) if (a != b) {
            if (n - b >= 0 && !dp[n - b][b]) {
              dp[n][a] = true;
            }
          }
        }
      }
      foreach (n; 0 .. lim + 1) {
        writef("%2d: ", n);
        foreach (a; 0 .. k + 1) {
          write(dp[n][a] ? 1 : 0);
        }
        writeln;
      }
      const res = solve(lim, k);
      foreach (n; 0 .. lim + 1) {
        foreach (a; 0 .. k + 1) {
          assert(dp[n][a] == !(res[n] == -2 || res[n] == a));
        }
      }
    }
  }}
  
  try {
    for (; ; ) {
      const N = readInt() - 1;
      const K = readInt();
      
      const res = solve(N, K);
      debug {
        writeln(res);
      }
      bool win;
      foreach (k; 1 .. K + 1) {
        if (res[N - k] == -2 || res[N - k] == k) {
          win = true;
          writeln(k);
        }
      }
      if (!win) {
        writeln(0);
      }
    }
  } catch (EOFException e) {
  }
}
0