結果
問題 | No.43 野球の試合 |
ユーザー | lloyz |
提出日時 | 2022-09-11 00:44:57 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-05-05 11:38:41 |
合計ジャッジ時間 | 912 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,752 KB |
testcase_01 | AC | 26 ms
10,624 KB |
testcase_02 | AC | 25 ms
10,624 KB |
testcase_03 | AC | 26 ms
10,752 KB |
testcase_04 | AC | 25 ms
10,752 KB |
testcase_05 | AC | 27 ms
10,752 KB |
testcase_06 | AC | 30 ms
10,752 KB |
testcase_07 | AC | 28 ms
11,008 KB |
testcase_08 | WA | - |
testcase_09 | AC | 27 ms
10,880 KB |
testcase_10 | WA | - |
ソースコード
n = int(input()) G = [list(input()) for _ in range(n)] for i in range(n): if G[0][i] == '-': G[0][i] = 'o' if G[i][0] == '-': G[i][0] = 'x' W = [[0, i] for i in range(n)] M = [] for i in range(n): for j in range(n): if G[i][j] == 'o': W[i][0] += 1 if i < j and G[i][j] == '-': M.append((i, j)) ans = n g = len(M) def func(W, i): global ans if i == g: W.sort(key=lambda x: (-x[0], x[1])) for i in range(n): if W[i][1] == 0: ans = min(ans, i + 1) return x, y = M[i] W[x][0] += 1 func(W.copy(), i + 1) W[x][0] -= 1 W[y][0] += 1 func(W.copy(), i + 1) W[y][0] -= 1 func(W, 0) print(ans)