結果

問題 No.43 野球の試合
ユーザー momoyuumomoyuu
提出日時 2022-08-03 00:40:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,106 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-23 18:54:17
合計ジャッジ時間 1,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 50 ms
59,648 KB
testcase_05 AC 63 ms
65,920 KB
testcase_06 AC 113 ms
76,672 KB
testcase_07 AC 42 ms
52,224 KB
testcase_08 AC 81 ms
75,904 KB
testcase_09 AC 78 ms
75,776 KB
testcase_10 AC 100 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [list(input()) for _ in range(N)]
l = [i for i in range(N)]
from itertools import combinations
l = combinations(l,2)
l = list(l)

all = N*(N-1)//2
now = N
for s in range(2**all):
    d = [0 for _ in range(N)]
    p = True
    for i in range(all):
        p,q = l[i]
        w = 0
        if S[p][q]  == "-":
            if s>>i & 1:
                w = 0
            else:
                w = 1
        elif (S[p][q] == "o" and s>>i & 1) or (S[p][q] == "x" and s>>i & 1 == 0):
            if S[p][q] == "o":
                w = 0
            else:
                w = 1
        else:
            p = False
            break
        if w == 0:
            d[p] += 1
        else:
            d[q] += 1
    if not p:
        continue
    ll = []
    for i in range(len(d)):
        ll.append((d[i],i))
    ll.sort(key=lambda x:(-x[0],x[1]))
    a = ll[0][0]
    b = 1
    if ll[0][1] == 0:
        now = 1
        break
    for i in range(1,N):
        if ll[i-1][0] != ll[i][0]:
            b += 1
        if ll[i][1] == 0:
            now = min(now,b)
            break

print(now)



0