結果

問題 No.43 野球の試合
ユーザー mkawa2mkawa2
提出日時 2019-12-20 00:10:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,215 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-07 02:14:42
合計ジャッジ時間 950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    def dfs(i=1, j=1):
        res = 10
        for ni in range(i, n):
            for nj in range(ni + 1, n):
                if ni == i and nj <= j: continue
                if t[ni][nj] == -1:
                    t[ni][nj] = 1
                    t[nj][ni] = 0
                    res = min(dfs(ni, nj), res)
                    t[ni][nj] = 0
                    t[nj][ni] = 1
                    res = min(dfs(ni, nj), res)
                    t[ni][nj] = -1
                    t[nj][ni] = -1
                    return res
        score = set(sum(tk) for tk in t)
        s0 = sum(t[0])
        for i, s in enumerate(sorted(score, reverse=True)):
            if s == s0: return i + 1

    n = int(input())
    t = [[(c == "o") * 1 - (c == "-") * 1 for c in input()] for _ in range(n)]
    for j in range(n):
        if t[0][j] == -1:
            t[0][j] = 1
            t[j][0] = 0
    print(dfs())

main()
0