結果

問題 No.1937 Various Tournament
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-13 22:54:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,556 ms / 2,000 ms
コード長 1,277 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,644 KB
最終ジャッジ日時 2024-07-22 03:11:59
合計ジャッジ時間 50,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 1,519 ms
93,184 KB
testcase_02 AC 1,520 ms
93,188 KB
testcase_03 AC 1,521 ms
93,268 KB
testcase_04 AC 1,524 ms
93,304 KB
testcase_05 AC 55 ms
64,600 KB
testcase_06 AC 1,549 ms
93,408 KB
testcase_07 AC 1,547 ms
93,312 KB
testcase_08 AC 55 ms
64,512 KB
testcase_09 AC 1,526 ms
93,312 KB
testcase_10 AC 59 ms
65,408 KB
testcase_11 AC 1,529 ms
93,508 KB
testcase_12 AC 1,503 ms
93,644 KB
testcase_13 AC 1,529 ms
93,528 KB
testcase_14 AC 1,528 ms
93,568 KB
testcase_15 AC 1,556 ms
93,312 KB
testcase_16 AC 1,509 ms
93,312 KB
testcase_17 AC 1,542 ms
93,568 KB
testcase_18 AC 1,506 ms
93,112 KB
testcase_19 AC 1,523 ms
93,116 KB
testcase_20 AC 56 ms
65,280 KB
testcase_21 AC 40 ms
52,224 KB
testcase_22 AC 1,516 ms
93,168 KB
testcase_23 AC 1,524 ms
93,312 KB
testcase_24 AC 1,530 ms
93,452 KB
testcase_25 AC 58 ms
65,408 KB
testcase_26 AC 1,534 ms
93,184 KB
testcase_27 AC 40 ms
52,736 KB
testcase_28 AC 1,511 ms
93,312 KB
testcase_29 AC 56 ms
64,640 KB
testcase_30 AC 1,503 ms
93,408 KB
testcase_31 AC 1,514 ms
93,440 KB
testcase_32 AC 1,523 ms
93,264 KB
testcase_33 AC 1,512 ms
93,440 KB
testcase_34 AC 1,509 ms
93,568 KB
testcase_35 AC 1,522 ms
93,496 KB
testcase_36 AC 1,515 ms
93,404 KB
testcase_37 AC 56 ms
65,108 KB
testcase_38 AC 57 ms
65,024 KB
testcase_39 AC 1,544 ms
93,424 KB
testcase_40 AC 61 ms
65,024 KB
testcase_41 AC 61 ms
65,312 KB
testcase_42 AC 1,527 ms
93,568 KB
testcase_43 AC 55 ms
64,768 KB
testcase_44 AC 39 ms
52,352 KB
testcase_45 AC 1,523 ms
93,296 KB
testcase_46 AC 56 ms
65,152 KB
testcase_47 AC 39 ms
52,736 KB
testcase_48 AC 41 ms
52,224 KB
testcase_49 AC 57 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = (N - 1).bit_length()
S = tuple(tuple(map(int, input().split())) for _ in range(N))


"""
dp[S, i]
選手の集合S, 勝者i -> 何通り
"""
bit = [[] for _ in range(5)]
for b in range(1, 1 << N):
    pc = bin(b).count("1")
    if pc == 1:
        bit[0].append(b)
    elif pc == 2:
        bit[1].append(b)
    elif pc == 4:
        bit[2].append(b)
    elif pc == 8:
        bit[3].append(b)
    elif pc == 16:
        bit[4].append(b)


dp = [[0] * N for _ in range(1 << N)]
for i in range(N):
    dp[1 << i][i] = 1

for i in range(M - 1):
    for x in bit[i]:
        for j in range(N):
            if ~(x >> j) & 1:
                continue
            for y in bit[i]:
                if x & y:
                    continue
                for k in range(N):
                    if ~(y >> k) & 1:
                        continue
                    win = j if S[j][k] else k
                    dp[x | y][win] += dp[x][j] * dp[y][k]


mask = (1 << N) - 1
for x in bit[M-1]:
    y = mask ^ x
    for i in range(N):
        if (x >> i) & 1:
            for j in range(N):
                if (y >> j) & 1:
                    win = i if S[i][j] else j
                    dp[mask][win] += dp[x][i] * dp[y][j]


for i in range(N):
    print(dp[mask][i])
0