結果

問題 No.1937 Various Tournament
ユーザー vwxyzvwxyz
提出日時 2024-06-02 08:44:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 909 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-12-23 04:02:42
合計ジャッジ時間 69,087 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,912 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 102 ms
76,684 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 98 ms
77,048 KB
testcase_09 TLE -
testcase_10 AC 100 ms
76,796 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,988 ms
88,704 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 99 ms
77,408 KB
testcase_21 AC 47 ms
54,656 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 95 ms
76,888 KB
testcase_26 AC 1,950 ms
88,448 KB
testcase_27 AC 45 ms
54,784 KB
testcase_28 AC 1,925 ms
88,704 KB
testcase_29 AC 97 ms
76,672 KB
testcase_30 AC 1,954 ms
88,960 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 101 ms
77,096 KB
testcase_38 AC 102 ms
76,620 KB
testcase_39 TLE -
testcase_40 AC 98 ms
77,120 KB
testcase_41 AC 99 ms
76,624 KB
testcase_42 TLE -
testcase_43 AC 99 ms
76,672 KB
testcase_44 AC 50 ms
55,040 KB
testcase_45 TLE -
testcase_46 AC 98 ms
76,800 KB
testcase_47 AC 47 ms
54,912 KB
testcase_48 AC 45 ms
55,040 KB
testcase_49 AC 100 ms
76,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

N=int(input())
S=[list(map(int,input().split())) for i in range(N)]
@lru_cache(maxsize=None)
def solve(idx):
    retu=[0]*N
    if len(idx)==1:
        retu[idx[0]]=1
    else:
        le=len(idx)
        for bit in range(1<<le):
            idx0,idx1=[],[]
            for i in range(le):
                if bit&1<<i:
                    idx0.append(idx[i])
                else:
                    idx1.append(idx[i])
            if len(idx0)==len(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