結果

問題 No.1937 Various Tournament
ユーザー 👑 rin204rin204
提出日時 2022-05-13 22:10:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 798 ms / 2,000 ms
コード長 1,310 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 90,700 KB
最終ジャッジ日時 2024-07-22 02:04:43
合計ジャッジ時間 26,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,692 KB
testcase_01 AC 774 ms
90,536 KB
testcase_02 AC 777 ms
90,620 KB
testcase_03 AC 789 ms
90,296 KB
testcase_04 AC 795 ms
90,248 KB
testcase_05 AC 64 ms
69,016 KB
testcase_06 AC 791 ms
90,700 KB
testcase_07 AC 798 ms
90,252 KB
testcase_08 AC 60 ms
69,712 KB
testcase_09 AC 764 ms
90,340 KB
testcase_10 AC 64 ms
69,224 KB
testcase_11 AC 760 ms
90,516 KB
testcase_12 AC 758 ms
90,480 KB
testcase_13 AC 787 ms
90,276 KB
testcase_14 AC 761 ms
90,436 KB
testcase_15 AC 771 ms
90,008 KB
testcase_16 AC 767 ms
90,272 KB
testcase_17 AC 759 ms
90,560 KB
testcase_18 AC 769 ms
90,284 KB
testcase_19 AC 780 ms
90,056 KB
testcase_20 AC 62 ms
68,404 KB
testcase_21 AC 46 ms
61,168 KB
testcase_22 AC 765 ms
90,252 KB
testcase_23 AC 756 ms
90,060 KB
testcase_24 AC 767 ms
90,268 KB
testcase_25 AC 63 ms
69,144 KB
testcase_26 AC 778 ms
90,212 KB
testcase_27 AC 47 ms
62,572 KB
testcase_28 AC 757 ms
90,440 KB
testcase_29 AC 63 ms
68,200 KB
testcase_30 AC 782 ms
90,616 KB
testcase_31 AC 779 ms
90,148 KB
testcase_32 AC 774 ms
90,376 KB
testcase_33 AC 770 ms
90,132 KB
testcase_34 AC 765 ms
90,076 KB
testcase_35 AC 778 ms
90,328 KB
testcase_36 AC 769 ms
90,216 KB
testcase_37 AC 64 ms
69,748 KB
testcase_38 AC 61 ms
68,504 KB
testcase_39 AC 775 ms
90,480 KB
testcase_40 AC 62 ms
68,572 KB
testcase_41 AC 63 ms
70,808 KB
testcase_42 AC 766 ms
90,296 KB
testcase_43 AC 63 ms
69,712 KB
testcase_44 AC 47 ms
61,140 KB
testcase_45 AC 778 ms
90,384 KB
testcase_46 AC 64 ms
69,644 KB
testcase_47 AC 46 ms
61,924 KB
testcase_48 AC 47 ms
61,940 KB
testcase_49 AC 62 ms
68,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(x):
    x = x - ((x >> 1) & 0x55555555)
    x = (x & 0x33333333) + ((x >> 2) & 0x33333333)
    x = (x + (x >> 4)) & 0x0f0f0f0f
    x += x >> 8
    x += x >> 16
    return x & 0x0000003f

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

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

bits = [[] for _ in range(17)]
se2 = {2, 4, 8, 16}
for i in se2:
    for j in range(1 << i):
        if popcount(j) == i >> 1:
            bits[i >> 1].append(j)
x = 0

for bit in range(3, 1 << n):
    cnt = 0
    lst = []
    for i in range(n):
        if bit >> i & 1:
            lst.append(i)
            cnt += 1
    if cnt not in se2:
        continue
    half = cnt >> 1
    x += len(bits[half])
    for bbit in bits[half]:
        b1 = 0
        b2 = 0
        l1 = []
        l2 = []
        for i in range(cnt):
            if bbit >> i & 1:
                b1 |= 1 << lst[i]
                l1.append(lst[i])
            else:
                b2 |= 1 << lst[i]
                l2.append(lst[i])
        for i in l1:
            for j in l2:
                if S[i][j]:
                    dp[bit][i] += dp[b1][i] * dp[b2][j]
                else:
                    dp[bit][j] += dp[b2][j] * dp[b1][i]
                

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