結果

問題 No.753 最強王者決定戦
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-05-02 07:54:41
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 476 ms / 1,000 ms
コード長 2,218 bytes
コンパイル時間 1,288 ms
コンパイル使用メモリ 106,924 KB
実行使用メモリ 17,116 KB
最終ジャッジ日時 2023-09-04 00:58:37
合計ジャッジ時間 3,543 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 476 ms
16,572 KB
testcase_01 AC 475 ms
16,668 KB
testcase_02 AC 471 ms
16,772 KB
testcase_03 AC 475 ms
17,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


enum N = 16;

int[][] A;

void main() {
  try {
    for (; ; ) {
      A = new int[][](N, N);
      foreach (u; 0 .. N) foreach (v; 0 .. N) {
        A[u][v] = readInt();
      }
      foreach (u; 0 .. N) foreach (v; 0 .. u) {
        A[u][v] = -A[v][u];
      }
      
      auto dp = new long[][](1 << N, N);
      foreach (u; 0 .. N) {
        dp[1 << u][u] = 1;
      }
      foreach (p; 1 .. 1 << N) {
        const l = popcnt(p);
        if (!(l & (l - 1))) {
          for (int q = p; ; --q &= p) {
            if (popcnt(q) == l / 2) {
              foreach (u; 0 .. N) {
                if ((q >> u) & 1) {
                  foreach (v; 0 .. N) {
                    if (((p ^ q) >> v) & 1) {
                      dp[p][(A[u][v] > 0) ? u : v] += dp[q][u] * dp[p ^ q][v];
                    }
                  }
                }
              }
            }
            if (q == 0) {
              break;
            }
          }
        }
      }
      foreach (u; 0 .. N) {
        writeln(dp[(1 << N) - 1][u]);
      }
    }
  } catch (EOFException e) {
  }
}
0