結果
問題 | No.43 野球の試合 |
ユーザー | kroton |
提出日時 | 2014-10-31 06:54:47 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 7 ms / 5,000 ms |
コード長 | 1,034 bytes |
コンパイル時間 | 497 ms |
コンパイル使用メモリ | 57,292 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-30 14:56:35 |
合計ジャッジ時間 | 1,197 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 7 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> using namespace std; int N; string match[10]; int win[10]; int sum[10]; int dfs(int id){ if(id >= N * N){ for(int i=0;i<N;i++)sum[i] = 0; for(int i=0;i<N;i++){ win[i] = 0; for(int j=0;j<N;j++)if(match[i][j] == 'o')++win[i]; sum[win[i]] = 1; } for(int i=N-2;i>=0;i--){ sum[i] += sum[i+1]; } return sum[win[0]]; } int res = 100; int y = id / N, x = id % N; if(match[y][x] == '-'){ match[y][x] = 'o'; match[x][y] = 'x'; res = min(res, dfs(id + 1)); match[y][x] = 'x'; match[x][y] = 'o'; res = min(res, dfs(id + 1)); match[y][x] = '-'; match[x][y] = '-'; } else { res = dfs(id + 1); } return res; } int main(){ cin >> N; for(int i=0;i<N;i++)cin >> match[i]; cout << dfs(0) << endl; return 0; }