結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,784 KB
testcase_01 AC 1,580 ms
96,556 KB
testcase_02 AC 1,573 ms
96,640 KB
testcase_03 AC 1,501 ms
95,548 KB
testcase_04 AC 1,492 ms
95,288 KB
testcase_05 AC 67 ms
74,240 KB
testcase_06 AC 1,554 ms
96,356 KB
testcase_07 AC 1,466 ms
94,720 KB
testcase_08 AC 63 ms
74,056 KB
testcase_09 AC 1,681 ms
94,600 KB
testcase_10 AC 72 ms
75,264 KB
testcase_11 AC 1,550 ms
96,624 KB
testcase_12 AC 1,718 ms
96,512 KB
testcase_13 AC 1,995 ms
95,780 KB
testcase_14 AC 1,628 ms
96,200 KB
testcase_15 AC 1,550 ms
96,748 KB
testcase_16 AC 1,522 ms
97,108 KB
testcase_17 AC 1,528 ms
96,256 KB
testcase_18 AC 1,494 ms
94,976 KB
testcase_19 AC 1,492 ms
96,408 KB
testcase_20 AC 68 ms
75,392 KB
testcase_21 AC 38 ms
55,552 KB
testcase_22 AC 1,548 ms
95,416 KB
testcase_23 AC 1,509 ms
95,092 KB
testcase_24 AC 1,638 ms
95,088 KB
testcase_25 AC 69 ms
74,368 KB
testcase_26 AC 1,496 ms
96,272 KB
testcase_27 AC 39 ms
55,424 KB
testcase_28 AC 1,500 ms
95,952 KB
testcase_29 AC 66 ms
74,652 KB
testcase_30 AC 1,426 ms
94,460 KB
testcase_31 AC 1,492 ms
94,848 KB
testcase_32 AC 1,535 ms
95,596 KB
testcase_33 AC 1,480 ms
95,408 KB
testcase_34 AC 1,509 ms
95,176 KB
testcase_35 AC 1,496 ms
95,356 KB
testcase_36 AC 1,503 ms
95,744 KB
testcase_37 AC 61 ms
72,448 KB
testcase_38 AC 77 ms
77,312 KB
testcase_39 AC 1,522 ms
96,116 KB
testcase_40 AC 68 ms
74,752 KB
testcase_41 AC 61 ms
71,680 KB
testcase_42 AC 1,524 ms
95,468 KB
testcase_43 AC 62 ms
72,064 KB
testcase_44 AC 40 ms
55,040 KB
testcase_45 AC 1,529 ms
95,260 KB
testcase_46 AC 63 ms
73,856 KB
testcase_47 AC 38 ms
55,168 KB
testcase_48 AC 41 ms
55,552 KB
testcase_49 AC 68 ms
76,032 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