結果
問題 | No.1937 Various Tournament |
ユーザー |
![]() |
提出日時 | 2022-05-14 10:27:50 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 226 ms / 2,000 ms |
コード長 | 1,531 bytes |
コンパイル時間 | 2,185 ms |
コンパイル使用メモリ | 218,588 KB |
最終ジャッジ日時 | 2025-01-29 07:58:19 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 47 |
ソースコード
#include<bits/stdc++.h>namespace {#pragma GCC diagnostic push#pragma GCC diagnostic ignored "-Wunused-function"#include<atcoder/all>#pragma GCC diagnostic popusing namespace std;using namespace atcoder;#define rep(i,n) for(int i = 0; i < (int)(n); i++)#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)#define all(x) begin(x), end(x)#define rall(x) rbegin(x), rend(x)template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }using ll = long long;using P = pair<int,int>;using VI = vector<int>;using VVI = vector<VI>;using VL = vector<ll>;using VVL = vector<VL>;bool s[20][20];ll dp[1 << 16][16];} int main() {ios::sync_with_stdio(false);cin.tie(0);int n;cin >> n;rep(i, n) rep(j, n) cin >> s[i][j];rep(i, n) dp[1 << i][i] = 1;for(int k = 2; k <= n; k *= 2) {for (int x, y, T = (1 << k) - 1; T < (1 << n); x = T & -T, y = T + x, T = (((T & ~y) / x) >> 1) | y) {auto dfs = [&](auto self, int rest, int now) {if (rest == 0) {assert(__builtin_popcount(now) == k / 2);rep(i, n) dp[T][i] += dp[now][i] << k / 2;return;}int i = __builtin_ctz(rest & -rest);rest ^= 1 << i;rep(j, n) if (rest >> j & 1) self(self, rest ^ 1 << j, now | 1 << (s[i][j] ? i : j));};dfs(dfs, T, 0);}}rep(i, n) cout << dp[~(~0U << n)][i] << '\n';}