結果

問題 No.43 野球の試合
ユーザー szkhtsszkhts
提出日時 2023-08-06 08:06:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 882 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-24 04:07:57
合計ジャッジ時間 1,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def dfs(depth):
    if depth == len(yet_coor):
        count = 0
        k_win = win_count[0] + w_list[0]
        pre_list = []
        for i, j in list(zip(win_count, w_list))[1:]:
            if k_win < i + j and i + j not in pre_list:
                count += 1
                pre_list.append(i + j)
        return count + 1

    r, c = yet_coor[depth]
    w_list[r] += 1
    tmp_rank = dfs(depth + 1)
    w_list[r] -= 1
    w_list[c] += 1
    tmp_rank = min(tmp_rank, dfs(depth + 1))
    w_list[c] -= 1
    return tmp_rank

n = int(input())
matrix = [input() for i in range(n)]

win_count = []
yet_coor = []
for i, row in enumerate(matrix):
    win = 0
    for j, cell in enumerate(row):
        if cell == 'o':
            win += 1
        if i < j:
            if cell == '-':
                yet_coor.append([i, j])
    win_count.append(win)

w_list = [0] * n

print(dfs(0))
0