結果

問題 No.1937 Various Tournament
ユーザー vwxyzvwxyz
提出日時 2024-06-02 09:41:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,792 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 97,280 KB
最終ジャッジ日時 2024-06-02 09:42:13
合計ジャッジ時間 54,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,296 KB
testcase_01 AC 1,643 ms
97,024 KB
testcase_02 AC 1,663 ms
96,768 KB
testcase_03 AC 1,707 ms
95,744 KB
testcase_04 AC 1,671 ms
95,360 KB
testcase_05 AC 86 ms
74,368 KB
testcase_06 AC 1,688 ms
96,384 KB
testcase_07 AC 1,652 ms
94,720 KB
testcase_08 AC 80 ms
73,472 KB
testcase_09 AC 1,792 ms
94,720 KB
testcase_10 AC 84 ms
75,008 KB
testcase_11 AC 1,658 ms
96,492 KB
testcase_12 AC 1,655 ms
96,384 KB
testcase_13 AC 1,689 ms
96,036 KB
testcase_14 AC 1,614 ms
96,000 KB
testcase_15 AC 1,651 ms
96,896 KB
testcase_16 AC 1,655 ms
97,280 KB
testcase_17 AC 1,633 ms
96,000 KB
testcase_18 AC 1,638 ms
95,104 KB
testcase_19 AC 1,676 ms
96,384 KB
testcase_20 AC 87 ms
75,776 KB
testcase_21 AC 47 ms
55,424 KB
testcase_22 AC 1,625 ms
95,488 KB
testcase_23 AC 1,591 ms
94,976 KB
testcase_24 AC 1,729 ms
95,104 KB
testcase_25 AC 83 ms
74,624 KB
testcase_26 AC 1,615 ms
96,384 KB
testcase_27 AC 47 ms
55,296 KB
testcase_28 AC 1,566 ms
95,744 KB
testcase_29 AC 86 ms
74,624 KB
testcase_30 AC 1,569 ms
94,464 KB
testcase_31 AC 1,615 ms
94,976 KB
testcase_32 AC 1,624 ms
95,488 KB
testcase_33 AC 1,643 ms
95,616 KB
testcase_34 AC 1,616 ms
94,976 KB
testcase_35 AC 1,644 ms
95,488 KB
testcase_36 AC 1,650 ms
95,744 KB
testcase_37 AC 78 ms
71,936 KB
testcase_38 AC 92 ms
77,568 KB
testcase_39 AC 1,656 ms
96,128 KB
testcase_40 AC 83 ms
74,368 KB
testcase_41 AC 78 ms
71,808 KB
testcase_42 AC 1,621 ms
95,420 KB
testcase_43 AC 79 ms
71,808 KB
testcase_44 AC 47 ms
55,168 KB
testcase_45 AC 1,633 ms
95,360 KB
testcase_46 AC 81 ms
73,856 KB
testcase_47 AC 45 ms
55,040 KB
testcase_48 AC 45 ms
55,040 KB
testcase_49 AC 85 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache


N=int(input())
S=[list(map(int,input().split())) for i in range(N)]
bit_set=[[] for n in range(N+1)]
for N in range(N+1):
    for bit in range(1<<N):
        idx0,idx1=[],[]
        for i in range(N):
            if bit&1<<i:
                idx0.append(i)
            else:
                idx1.append(i)
        if len(idx0)==len(idx1):
            bit_set[N].append((idx0,idx1))
@lru_cache(maxsize=None)
def solve(idx):
    retu=[0]*N
    if len(idx)==1:
        retu[idx[0]]=1
    else:
        for idx0,idx1 in bit_set[len(idx)]:
            idx0=[idx[i] for i in idx0]
            idx1=[idx[i] for i in idx1]
            retu0=solve(tuple(idx0))
            retu1=solve(tuple(idx1))
            for i in idx0:
                for j in idx1:
                    if S[i][j]:
                        retu[i]+=retu0[i]*retu1[j]
                    else:
                        retu[j]+=retu0[i]*retu1[j]
    return retu
ans_lst=solve(tuple([i for i in range(N)]))
for ans in ans_lst:
    print(ans)
0