結果

問題 No.1937 Various Tournament
ユーザー titiatitia
提出日時 2022-05-18 03:42:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,258 ms / 2,000 ms
コード長 1,264 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,644 KB
最終ジャッジ日時 2024-09-16 02:59:52
合計ジャッジ時間 40,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,648 KB
testcase_01 AC 1,112 ms
79,096 KB
testcase_02 AC 1,179 ms
79,296 KB
testcase_03 AC 1,250 ms
79,596 KB
testcase_04 AC 1,215 ms
79,228 KB
testcase_05 AC 82 ms
76,544 KB
testcase_06 AC 1,150 ms
79,444 KB
testcase_07 AC 1,198 ms
79,228 KB
testcase_08 AC 83 ms
76,800 KB
testcase_09 AC 1,194 ms
78,916 KB
testcase_10 AC 81 ms
76,672 KB
testcase_11 AC 1,185 ms
79,080 KB
testcase_12 AC 1,213 ms
78,632 KB
testcase_13 AC 1,153 ms
78,832 KB
testcase_14 AC 1,191 ms
79,220 KB
testcase_15 AC 1,171 ms
79,360 KB
testcase_16 AC 1,196 ms
79,068 KB
testcase_17 AC 1,179 ms
78,804 KB
testcase_18 AC 1,185 ms
78,912 KB
testcase_19 AC 1,198 ms
79,300 KB
testcase_20 AC 82 ms
76,800 KB
testcase_21 AC 73 ms
76,032 KB
testcase_22 AC 1,146 ms
79,232 KB
testcase_23 AC 1,213 ms
79,512 KB
testcase_24 AC 1,137 ms
78,672 KB
testcase_25 AC 82 ms
76,416 KB
testcase_26 AC 1,180 ms
78,956 KB
testcase_27 AC 74 ms
76,032 KB
testcase_28 AC 1,150 ms
78,816 KB
testcase_29 AC 81 ms
76,416 KB
testcase_30 AC 1,200 ms
79,004 KB
testcase_31 AC 1,246 ms
78,804 KB
testcase_32 AC 1,211 ms
78,712 KB
testcase_33 AC 1,184 ms
78,612 KB
testcase_34 AC 1,121 ms
79,072 KB
testcase_35 AC 1,174 ms
79,644 KB
testcase_36 AC 1,166 ms
78,704 KB
testcase_37 AC 83 ms
76,672 KB
testcase_38 AC 81 ms
76,672 KB
testcase_39 AC 1,240 ms
78,768 KB
testcase_40 AC 82 ms
76,544 KB
testcase_41 AC 87 ms
76,544 KB
testcase_42 AC 1,203 ms
78,708 KB
testcase_43 AC 83 ms
76,544 KB
testcase_44 AC 79 ms
75,648 KB
testcase_45 AC 1,258 ms
79,128 KB
testcase_46 AC 87 ms
77,056 KB
testcase_47 AC 77 ms
76,160 KB
testcase_48 AC 74 ms
76,160 KB
testcase_49 AC 83 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N=int(input())
S=[list(map(int,input().split())) for i in range(N)]

ANS=[0]*N

def listbit(x):
    for i in range(1<<x):
        count=0
        for j in range(x):
            if i & (1<<j) != 0:
                count+=1
        if count==x//2 and i & (1<<0)==0:
            yield i

LBIT=[-1]*20

LBIT[2]=list(listbit(2))
LBIT[4]=list(listbit(4))
LBIT[8]=list(listbit(8))
LBIT[16]=list(listbit(16))

def win(x,y):
    if S[x][y]==1:
        return x
    else:
        return y
    
def calc(X,f):
    if len(X)==2:
        a,b=X[0],X[1]

        DX=Counter()

        if S[a][b]==1:
            DX[a]=f
        else:
            DX[b]=f
        return DX
        
    DD=Counter()

    for i in LBIT[len(X)]:
        Y=[]
        Z=[]

        for j in range(len(X)):
            if i & (1<<j) == 0:
                Y.append(X[j])
            else:
                Z.append(X[j])

        if len(Y)==len(X)//2:
            D1=calc(Y,f)
            D2=calc(Z,f)

            for d1 in D1:
                for d2 in D2:
                    DD[win(d1,d2)]+=D1[d1]*D2[d2]

    return DD

D=calc(list(range(N)),1)

if N==2:
    k=2
elif N==4:
    k=4*2
elif N==8:
    k=16*8
else:
    k=16*16*128

for i in range(N):
    print(D[i]*k)
0