結果
問題 | No.753 最強王者決定戦 |
ユーザー | kmjp |
提出日時 | 2018-11-10 00:17:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 730 ms / 1,000 ms |
コード長 | 1,407 bytes |
コンパイル時間 | 1,623 ms |
コンパイル使用メモリ | 163,320 KB |
実行使用メモリ | 16,972 KB |
最終ジャッジ日時 | 2024-11-21 07:17:54 |
合計ジャッジ時間 | 5,595 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 708 ms
16,612 KB |
testcase_01 | AC | 730 ms
16,856 KB |
testcase_02 | AC | 701 ms
16,612 KB |
testcase_03 | AC | 722 ms
16,972 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int N; int A[16][16]; ll win[16][1<<16]; vector<int> C[1<<16]; void solve() { int i,j,k,l,r,x,y; string s; N=16; FOR(y,N) FOR(x,N) { cin>>A[y][x]; if(A[y][x]==0) A[y][x]=-A[x][y]; } FOR(x,N) win[x][1<<x]=1; FOR(i,N) FOR(j,1<<N) if(j&(1<<i)) C[j].push_back(i); for(int mask=1;mask<1<<N;mask++) if(__builtin_popcount(mask)%2==0) { FOR(x,N) if(mask&(1<<x)) break; for(int sub=mask; sub>0; sub=(sub-1)&mask) if((sub&(1<<x)) && __builtin_popcount(sub)*2==__builtin_popcount(mask)) { int oth=mask^sub; FORR(a,C[sub]) FORR(b,C[oth]) { if(A[a][b]>0) win[a][mask]+=2*win[a][sub]*win[b][oth]; if(A[a][b]<0) win[b][mask]+=2*win[a][sub]*win[b][oth]; } } } FOR(i,N) cout<<win[i][(1<<N)-1]<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }