結果

問題 No.43 野球の試合
ユーザー lloyzlloyz
提出日時 2022-09-11 00:45:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 823 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-05 11:39:30
合計ジャッジ時間 1,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 27 ms
11,008 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 31 ms
11,008 KB
testcase_06 AC 33 ms
10,880 KB
testcase_07 AC 53 ms
11,136 KB
testcase_08 WA -
testcase_09 AC 30 ms
10,880 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
from copy import deepcopy

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(deepcopy(W), i + 1)
    W[x][0] -= 1
    W[y][0] += 1
    func(deepcopy(W), i + 1)
    W[y][0] -= 1

func(W, 0)
print(ans)
0