結果

問題 No.1937 Various Tournament
ユーザー KazunKazun
提出日時 2022-05-13 22:49:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 91,164 KB
最終ジャッジ日時 2024-07-22 03:04:23
合計ジャッジ時間 25,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 699 ms
91,008 KB
testcase_02 AC 724 ms
90,752 KB
testcase_03 AC 713 ms
91,008 KB
testcase_04 AC 752 ms
90,752 KB
testcase_05 AC 52 ms
61,824 KB
testcase_06 AC 763 ms
90,836 KB
testcase_07 AC 760 ms
90,780 KB
testcase_08 AC 51 ms
61,440 KB
testcase_09 AC 742 ms
90,624 KB
testcase_10 AC 50 ms
61,952 KB
testcase_11 AC 730 ms
90,860 KB
testcase_12 AC 733 ms
90,624 KB
testcase_13 AC 740 ms
90,624 KB
testcase_14 AC 733 ms
91,164 KB
testcase_15 AC 763 ms
91,136 KB
testcase_16 AC 739 ms
90,880 KB
testcase_17 AC 701 ms
90,880 KB
testcase_18 AC 720 ms
90,720 KB
testcase_19 AC 726 ms
90,624 KB
testcase_20 AC 50 ms
61,440 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 720 ms
91,008 KB
testcase_23 AC 721 ms
90,880 KB
testcase_24 AC 712 ms
90,968 KB
testcase_25 AC 52 ms
61,824 KB
testcase_26 AC 729 ms
90,752 KB
testcase_27 AC 40 ms
52,352 KB
testcase_28 AC 721 ms
90,868 KB
testcase_29 AC 51 ms
61,824 KB
testcase_30 AC 754 ms
90,908 KB
testcase_31 AC 754 ms
90,880 KB
testcase_32 AC 770 ms
90,880 KB
testcase_33 AC 740 ms
90,992 KB
testcase_34 AC 774 ms
90,880 KB
testcase_35 AC 768 ms
90,716 KB
testcase_36 AC 768 ms
91,008 KB
testcase_37 AC 53 ms
61,696 KB
testcase_38 AC 54 ms
61,824 KB
testcase_39 AC 752 ms
90,880 KB
testcase_40 AC 52 ms
61,440 KB
testcase_41 AC 52 ms
62,336 KB
testcase_42 AC 755 ms
91,064 KB
testcase_43 AC 53 ms
61,696 KB
testcase_44 AC 42 ms
52,096 KB
testcase_45 AC 762 ms
90,800 KB
testcase_46 AC 52 ms
61,952 KB
testcase_47 AC 40 ms
52,352 KB
testcase_48 AC 40 ms
52,480 KB
testcase_49 AC 51 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

N=int(input())

S=[]
for _ in range(N):
    S.append(list(map(int,input().split())))

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

popcount=[0]*(1<<N)
for A in range(1,1<<N):
    a=A&(-A)
    popcount[A]=popcount[A^a]+1

E=[A for A in range(1,1<<N) if (popcount[A]==1 or popcount[A]==2 or popcount[A]==4 or popcount[A]==8) and popcount[A]<N]
E.sort(key=lambda A:popcount[A])

for A in E:
    X=[]; Y=[]
    for a in range(N):
        if (A>>a)&1:
            X.append(a)
        else:
            Y.append(a)

    for B in combinations(Y,popcount[A]):
        T=0
        for b in B:
            T|=1<<b

        for a in X:
            for b in B:
                if S[a][b]==1:
                    DP[A|T][a]+=DP[A][a]*DP[T][b]
                else:
                    DP[A|T][b]+=DP[A][a]*DP[T][b]

print(*DP[-1],sep="\n")
0