結果
問題 | No.753 最強王者決定戦 |
ユーザー | ei1333333 |
提出日時 | 2018-11-09 21:55:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 339 ms / 1,000 ms |
コード長 | 1,089 bytes |
コンパイル時間 | 2,178 ms |
コンパイル使用メモリ | 201,888 KB |
実行使用メモリ | 11,956 KB |
最終ジャッジ日時 | 2024-11-21 05:53:49 |
合計ジャッジ時間 | 3,946 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 333 ms
11,856 KB |
testcase_01 | AC | 339 ms
11,892 KB |
testcase_02 | AC | 331 ms
11,956 KB |
testcase_03 | AC | 331 ms
11,860 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using int64 = long long; int S[16][16]; int pop[1 << 16]; int64 dp[1 << 16][16]; int64 rec(int win, int bit) { if(~dp[bit][win]) return dp[bit][win]; int64 ret = 0, dep = pop[bit] >> 1; if(dep == 0) return 1; for(int i = bit; i > 0; i = (i - 1) & bit) { int other = i ^bit; if((i >> win) & 1) { if(pop[i] == dep && pop[other] == dep) { for(int j = 0; j < 16; j++) { if((other >> j) & 1) { if(S[win][j] == 1) { ret += rec(win, i) * rec(j, other) * 2; } } } } } } return dp[bit][win] = ret; } int main() { for(int i = 0; i < 16; i++) { for(int j = 0; j < 16; j++) { cin >> S[i][j]; } } for(int i = 0; i < 16; i++) { for(int j = 0; j < 16; j++) { if(S[i][j] == 0) { S[i][j] = -S[j][i]; } } } for(int i = 0; i < 1 << 16; i++) { pop[i] = __builtin_popcount(i); } memset(dp, -1, sizeof(dp)); for(int i = 0; i < 16; i++) { cout << rec(i, (1 << 16) - 1) << endl; } }