結果
問題 | No.43 野球の試合 |
ユーザー | a |
提出日時 | 2016-07-09 03:43:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 895 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 42,564 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 08:03:56 |
合計ジャッジ時間 | 828 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | WA | - |
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 <cstdio> #include <algorithm> using namespace std; char s[11][11]; int x[11], y[11], c = 0; int main(void) { int n; scanf("%d", &n); for (int i = 0; i < n; i++) scanf("%s", s[i]); for (int i = 0; i < n; i++) { for (int j = i+1; j < n; j++) { if (s[i][j] == '-') { x[c] = j; y[c] = i; c += 1; } } } int res = 111; for (int i = 0; i < 1<<c; i++) { for (int j = 0; j < c; j++) { s[y[j]][x[j]] = s[x[j]][y[j]] = (i>>j&1) ? 'o' : 'x'; } int pts[11]{}; bool cnt[11]{}; for (int j = 0; j < n; j++) { for (int k = 0; k < n; k++) { if (s[j][k] == 'o') pts[j] += 1; } } int r = 0; for (int i = 1; i < n; i++) { if (!cnt[pts[i]] && pts[i] > pts[0]) { cnt[pts[i]] = 1; r++; } } res = min(res, r+1); } printf("%d\n", res); return 0; }