結果
問題 | No.43 野球の試合 |
ユーザー | なお |
提出日時 | 2014-10-20 00:12:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 997 bytes |
コンパイル時間 | 567 ms |
コンパイル使用メモリ | 69,204 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 16:24:22 |
合計ジャッジ時間 | 1,061 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
#include <iostream> #include <set> #include <vector> #include <string> #include <algorithm> using namespace std; typedef long long ll; #define REP(i, n) for(int(i)=0;(i)<(n);++(i)) int N; int maxrank = 6; string sv[6]; void check(){ set<int> s; int w = 0; REP(i,N){ int win = 0; REP(j,N) if(sv[i][j] == 'o') win++; if(i == 0) w = win; s.insert(win); } int rank = 1; for(auto it = s.rbegin(); it != s.rend(); ++it){ if(*it > w) rank++; else break; } maxrank = min(maxrank, rank); } void dfs(int i, int j){ if(j == N) return dfs(i+1,0); if(i == N) return check(); if(sv[i][j] == '-') return dfs(i,j+1); sv[i][j] = 'o'; sv[j][i] = 'x'; dfs(i,j+1); sv[i][j] = 'x'; sv[j][i] = 'o'; dfs(i,j+1); sv[i][j] = sv[j][i] = '-'; } int main(){ cin >> N; REP(i,N) cin >> sv[i]; dfs(0,0); cout << maxrank << endl; return 0; }