結果
問題 | No.43 野球の試合 |
ユーザー | ngtkana |
提出日時 | 2020-03-27 01:38:16 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 14 ms / 5,000 ms |
コード長 | 997 bytes |
コンパイル時間 | 2,507 ms |
コンパイル使用メモリ | 201,940 KB |
最終ジャッジ日時 | 2025-01-09 10:25:12 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 7 |
ソースコード
#include<bits/stdc++.h> using lint=long long; int main(){ std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false); std::cout.setf(std::ios_base::fixed);std::cout.precision(15); lint n;std::cin>>n; std::vector<std::string>a(n); for(auto&&s:a)std::cin>>s; lint N=1l<<n*(n-1)/2; lint ans=n; for(lint bs=0;bs<N;bs++){ std::vector<std::vector<lint>>b(n,std::vector<lint>(n)); for(lint i=0,k=0;i<n;i++){ for(lint j=i+1;j<n;j++,k++){ char c=a.at(i).at(j); b.at(i).at(j)=c=='-'?bs>>i&1:c=='o'; b.at(j).at(i)=!b.at(i).at(j); } } lint win=0; std::vector<lint>ckd(n+1); for(lint i=0;i<n;i++){ lint x=std::accumulate(b.at(i).begin(),b.at(i).end(),0ll); if(i==0)win=x; ckd.at(x)=true; } lint now=std::count(ckd.begin()+win,ckd.end(),true); if(now<ans)ans=now; } std::cout<<ans<<'\n'; }