結果

問題 No.1937 Various Tournament
ユーザー ああいいああいい
提出日時 2022-05-13 21:49:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,057 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 90,704 KB
最終ジャッジ日時 2024-07-22 01:34:13
合計ジャッジ時間 10,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,932 KB
testcase_01 AC 1,986 ms
90,012 KB
testcase_02 AC 1,989 ms
90,036 KB
testcase_03 AC 1,983 ms
90,040 KB
testcase_04 AC 1,980 ms
90,120 KB
testcase_05 AC 59 ms
67,580 KB
testcase_06 AC 1,974 ms
90,076 KB
testcase_07 AC 1,981 ms
90,384 KB
testcase_08 AC 59 ms
68,332 KB
testcase_09 AC 1,972 ms
90,308 KB
testcase_10 AC 59 ms
68,368 KB
testcase_11 AC 1,983 ms
90,348 KB
testcase_12 AC 1,992 ms
90,224 KB
testcase_13 AC 1,979 ms
90,020 KB
testcase_14 AC 1,986 ms
89,976 KB
testcase_15 AC 1,978 ms
90,704 KB
testcase_16 AC 1,981 ms
90,064 KB
testcase_17 AC 1,993 ms
90,284 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 64 ms
68,424 KB
testcase_21 AC 43 ms
52,544 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 64 ms
67,972 KB
testcase_26 TLE -
testcase_27 AC 42 ms
53,636 KB
testcase_28 TLE -
testcase_29 AC 67 ms
68,056 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 63 ms
67,920 KB
testcase_38 AC 64 ms
66,688 KB
testcase_39 TLE -
testcase_40 AC 60 ms
67,160 KB
testcase_41 AC 59 ms
66,408 KB
testcase_42 TLE -
testcase_43 AC 64 ms
67,548 KB
testcase_44 AC 42 ms
53,308 KB
testcase_45 TLE -
testcase_46 AC 66 ms
68,240 KB
testcase_47 AC 44 ms
53,568 KB
testcase_48 AC 48 ms
54,332 KB
testcase_49 AC 65 ms
68,376 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]:
            S[i][j] = i
            S[j][i] = i
        else:
            S[i][j] = j
            S[j][i] = j
        dp[bit][S[i][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
        l = dp[T]
        ll = dp[V]
        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] += l[i] * ll[j]
                else:
                    dp[bit][j] += l[i] * ll[j]
                """
                dp[bit][S[i][j]] += l[i] * ll[j]
l = dp[-1]
for k in range(N):
    print(l[k])
0