結果

問題 No.1937 Various Tournament
ユーザー ああいいああいい
提出日時 2022-05-13 21:42:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 893 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 90,796 KB
最終ジャッジ日時 2024-07-22 01:20:52
合計ジャッジ時間 11,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,928 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 60 ms
68,892 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 60 ms
70,020 KB
testcase_09 TLE -
testcase_10 AC 59 ms
69,460 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 64 ms
69,648 KB
testcase_21 AC 38 ms
52,640 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 63 ms
70,464 KB
testcase_26 TLE -
testcase_27 AC 37 ms
53,352 KB
testcase_28 TLE -
testcase_29 AC 61 ms
70,060 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 59 ms
68,468 KB
testcase_38 AC 61 ms
69,144 KB
testcase_39 TLE -
testcase_40 AC 59 ms
69,680 KB
testcase_41 AC 60 ms
69,452 KB
testcase_42 TLE -
testcase_43 AC 59 ms
69,900 KB
testcase_44 AC 37 ms
53,260 KB
testcase_45 TLE -
testcase_46 AC 59 ms
70,168 KB
testcase_47 AC 38 ms
53,356 KB
testcase_48 AC 37 ms
52,808 KB
testcase_49 AC 61 ms
68,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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):
    for j in range(i + 1,N):
        bit = (1 << i) | (1 << j)
        if S[i][j] == 1:
            dp[bit][i] = 2
        else:
            dp[bit][j] = 2
s = set([4,8,16])
for bit in range(1,1 << N):
    u = bin(bit).count('1')
    if u not in s:continue
    v = u // 2
    T = bit
    while T:
        T -= 1
        T &= bit
        if bin(T).count('1') != v:continue
        V = bit ^ T
        for i in range(N):
            if (T >> i) & 1 == 0:continue
            for j in range(N):
                #if (V >> j) & 1 == 0:continue
                if S[i][j] == 1:
                    dp[bit][i] += dp[T][i] * dp[V][j]
                else:
                    dp[bit][j] += dp[T][i] * dp[V][j]
                    
for k in range(N):
    print(dp[-1][k])
0