結果
問題 | No.43 野球の試合 |
ユーザー | ふーらくたる |
提出日時 | 2016-07-29 02:11:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 13 ms / 5,000 ms |
コード長 | 1,256 bytes |
コンパイル時間 | 624 ms |
コンパイル使用メモリ | 71,708 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 18:18:51 |
合計ジャッジ時間 | 1,421 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 13 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
ソースコード
#include <iostream> #include <vector> #include <utility> #include <set> using namespace std; typedef pair<int, int> PII; const int kMaxN = 6; string s[kMaxN]; int N; vector<PII> matchs; int Judge() { vector<int> win(N, 0); for (int r = 0; r < N; r++) { for (int c = 0; c < N; c++) { if (s[r][c] == 'o') win[r]++; } } set<int> win_set; for (int i = 0; i < N; i++) { win_set.insert(win[i]); } int rank = 1; for (auto it = win_set.rbegin(); it != win_set.rend(); it++) { if (win[0] == *it) return rank; rank++; } return rank; } int DFS(int index) { if (index == matchs.size()) { return Judge(); } PII match = matchs[index]; int row = match.first, col = match.second, rank = N; s[row][col] = 'o'; s[col][row] = 'x'; rank = min(rank, DFS(index + 1)); s[row][col] = 'x'; s[col][row] = 'o'; rank = min(rank, DFS(index + 1)); return rank; } int main() { cin >> N; for (int r = 0; r < N; r++) { cin >> s[r]; for (int c = 0; c < r; c++) { if (s[r][c] == '-') { matchs.push_back(PII(r, c)); } } } cout << DFS(0) << endl; return 0; }