結果
問題 | No.753 最強王者決定戦 |
ユーザー | Pachicobue |
提出日時 | 2018-11-10 20:36:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,650 bytes |
コンパイル時間 | 2,242 ms |
コンパイル使用メモリ | 205,092 KB |
実行使用メモリ | 11,832 KB |
最終ジャッジ日時 | 2024-11-25 00:10:15 |
合計ジャッジ時間 | 9,812 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
ソースコード
#include <bits/stdc++.h> using ll = long long; constexpr int N = 16; constexpr int MASK = 1 << N; ll memo[N][MASK]; int win[N][N]; int main() { for (int i = 0; i < N; i++) { std::fill(memo[i], memo[i] + MASK, -1); } auto next_combination = [](const int mask) { const int x = mask & (-mask), y = mask + x; return (((mask & ~y) / x) >> 1) | y; }; for (int i = 0; i < N; i++) { for (int j = 0, c; j < N; j++) { std::cin >> c; if (j >= i) { win[i][j] = (c == 1), win[j][i] = (c == -1); } } } auto dp = [&](auto&& self, const int p, const int mask, const int b) -> ll { if (b == 1) { return mask == (1 << p) ? 1 : 0; } if (memo[p][mask] != -1) { return memo[p][mask]; } std::vector<int> bits; for (int i = 0; i < N; i++) { if (mask & (1 << i)) { bits.push_back(i); } } const int half = b / 2; int subi = (1 << half) - 1; ll ans = 0; for (; subi < (1 << b); subi = next_combination(subi)) { int sub = 0; for (int i = 0; i < b; i++) { if (subi & (1 << i)) { sub |= (1 << bits[i]); } } int other = mask - sub; if (other & (1 << p)) { std::swap(sub, other); } for (int q = 0; q < N; q++) { if ((sub & (1 << q)) or (win[q][p])) { continue; } ans += self(self, p, sub, b / 2) * self(self, q, other, b / 2); } } return memo[p][mask] = ans; }; for (int i = 0; i < N; i++) { std::cout << dp(dp, i, MASK - 1, N) << std::endl; } return 0; }