結果

問題 No.1937 Various Tournament
ユーザー sotanishysotanishy
提出日時 2022-05-13 22:07:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 909 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 90,252 KB
最終ジャッジ日時 2024-07-22 02:01:48
合計ジャッジ時間 28,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,460 KB
testcase_01 AC 875 ms
90,100 KB
testcase_02 AC 853 ms
89,880 KB
testcase_03 AC 858 ms
89,812 KB
testcase_04 AC 854 ms
89,760 KB
testcase_05 AC 51 ms
62,952 KB
testcase_06 AC 849 ms
90,060 KB
testcase_07 AC 859 ms
89,956 KB
testcase_08 AC 52 ms
63,536 KB
testcase_09 AC 852 ms
89,816 KB
testcase_10 AC 50 ms
62,712 KB
testcase_11 AC 858 ms
89,760 KB
testcase_12 AC 843 ms
89,820 KB
testcase_13 AC 826 ms
89,832 KB
testcase_14 AC 808 ms
89,760 KB
testcase_15 AC 835 ms
89,876 KB
testcase_16 AC 823 ms
89,668 KB
testcase_17 AC 821 ms
90,064 KB
testcase_18 AC 831 ms
90,092 KB
testcase_19 AC 834 ms
89,908 KB
testcase_20 AC 54 ms
62,760 KB
testcase_21 AC 40 ms
52,312 KB
testcase_22 AC 825 ms
89,756 KB
testcase_23 AC 836 ms
90,120 KB
testcase_24 AC 841 ms
89,680 KB
testcase_25 AC 51 ms
62,824 KB
testcase_26 AC 839 ms
90,008 KB
testcase_27 AC 39 ms
52,620 KB
testcase_28 AC 836 ms
90,012 KB
testcase_29 AC 51 ms
63,224 KB
testcase_30 AC 819 ms
89,984 KB
testcase_31 AC 818 ms
90,108 KB
testcase_32 AC 854 ms
89,668 KB
testcase_33 AC 833 ms
89,760 KB
testcase_34 AC 845 ms
89,676 KB
testcase_35 AC 846 ms
89,684 KB
testcase_36 AC 868 ms
89,816 KB
testcase_37 AC 53 ms
63,508 KB
testcase_38 AC 52 ms
62,952 KB
testcase_39 AC 878 ms
89,692 KB
testcase_40 AC 53 ms
63,452 KB
testcase_41 AC 53 ms
64,200 KB
testcase_42 AC 902 ms
90,252 KB
testcase_43 AC 55 ms
63,588 KB
testcase_44 AC 41 ms
53,372 KB
testcase_45 AC 909 ms
90,092 KB
testcase_46 AC 57 ms
64,024 KB
testcase_47 AC 42 ms
52,680 KB
testcase_48 AC 42 ms
52,668 KB
testcase_49 AC 55 ms
63,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def subset(N, k):
    S = (1<<k)-1
    st = []
    while S < (1<<N):
        st.append(S)
        x = S & -S
        y = S + x
        S = ((S & ~y) // x >> 1) | y
    return st

N = int(input())
S = [list(map(int, input().split())) for _ in range(N)]
dp = [[0] * N for _ in range(1<<N)]
# dp[S][i] = number of ways where i wins the tournament of people in S
for i in range(N):
    dp[1<<i][i] = 1
k = 0
while 2**k < N:
    st = subset(N, 2**k)
    for l, X in enumerate(st):
        for Y in st[l+1:]:
            if X&Y:
                continue
            for i in range(N):
                if X>>i&1:
                    for j in range(N):
                        if Y>>j&1:
                            dp[X|Y][i if S[i][j] else j] += dp[X][i] * dp[Y][j] * 2
    k += 1
for i in range(N):
    print(dp[-1][i])
0