結果
問題 | No.43 野球の試合 |
ユーザー | Shibuyap |
提出日時 | 2020-02-25 23:19:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,396 bytes |
コンパイル時間 | 1,666 ms |
コンパイル使用メモリ | 168,880 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 14:39:00 |
合計ジャッジ時間 | 3,984 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); ++i) #define srep(i,s,t) for (int i = s; i < t; ++i) #define drep(i,n) for(int i = (n)-1; i >= 0; --i) using namespace std; typedef long long int ll; typedef pair<int,int> P; #define yn {puts("Yes");}else{puts("No");} #define MAX_N 200005 int main() { int n; cin >> n; int ans = 100; string s[n]; rep(i,n)cin >> s[i]; int m = n * (n-1) / 2; rep(i,1<<m){ int ii = i; int f[m] = {}; rep(j,m){ f[j] = ii % 2; ii /= 2; } int cnt = 0; string t[n]; rep(j,n)t[j] = s[j]; rep(j,n){ srep(k,j+1,n){ if(t[i][j] == '-'){ if(f[cnt]){ t[i][j] = 'o'; t[j][i] = 'x'; }else{ t[i][j] = 'x'; t[j][i] = 'o'; } } cnt++; } } int b[n+1] = {}; rep(j,n){ int c = 0; rep(k,n)if(t[j][k] == 'o')c++; b[c] = 1; } int c = 0; rep(k,n)if(t[0][k] == 'o')c++; int ju = 0; drep(j,n+1){ if(b[j])ju++; if(c == j)ans = min(ans, ju); } } cout << ans << endl; return 0; }