結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
76,032 KB
testcase_01 AC 1,138 ms
79,352 KB
testcase_02 AC 1,202 ms
79,428 KB
testcase_03 AC 1,191 ms
79,596 KB
testcase_04 AC 1,248 ms
79,352 KB
testcase_05 AC 94 ms
76,544 KB
testcase_06 AC 1,263 ms
79,320 KB
testcase_07 AC 1,200 ms
79,340 KB
testcase_08 AC 81 ms
76,544 KB
testcase_09 AC 1,189 ms
78,920 KB
testcase_10 AC 81 ms
76,416 KB
testcase_11 AC 1,346 ms
78,944 KB
testcase_12 AC 1,246 ms
78,656 KB
testcase_13 AC 1,190 ms
78,708 KB
testcase_14 AC 1,208 ms
78,968 KB
testcase_15 AC 1,211 ms
79,484 KB
testcase_16 AC 1,209 ms
79,196 KB
testcase_17 AC 1,177 ms
78,676 KB
testcase_18 AC 1,189 ms
78,904 KB
testcase_19 AC 1,188 ms
79,172 KB
testcase_20 AC 84 ms
76,672 KB
testcase_21 AC 73 ms
76,032 KB
testcase_22 AC 1,168 ms
79,228 KB
testcase_23 AC 1,205 ms
79,380 KB
testcase_24 AC 1,183 ms
78,424 KB
testcase_25 AC 82 ms
76,928 KB
testcase_26 AC 1,177 ms
79,216 KB
testcase_27 AC 79 ms
75,904 KB
testcase_28 AC 1,180 ms
79,084 KB
testcase_29 AC 82 ms
76,416 KB
testcase_30 AC 1,160 ms
78,868 KB
testcase_31 AC 1,222 ms
79,180 KB
testcase_32 AC 1,202 ms
78,580 KB
testcase_33 AC 1,169 ms
78,620 KB
testcase_34 AC 1,154 ms
79,448 KB
testcase_35 AC 1,179 ms
79,536 KB
testcase_36 AC 1,200 ms
78,600 KB
testcase_37 AC 83 ms
76,416 KB
testcase_38 AC 94 ms
76,672 KB
testcase_39 AC 1,244 ms
78,772 KB
testcase_40 AC 83 ms
76,544 KB
testcase_41 AC 82 ms
76,416 KB
testcase_42 AC 1,150 ms
78,592 KB
testcase_43 AC 83 ms
76,800 KB
testcase_44 AC 75 ms
76,032 KB
testcase_45 AC 1,247 ms
79,124 KB
testcase_46 AC 82 ms
77,056 KB
testcase_47 AC 74 ms
75,648 KB
testcase_48 AC 76 ms
76,160 KB
testcase_49 AC 82 ms
76,544 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])

        #print("!",Y,Z)

        if len(Y)==len(X)//2:
            #print(Y,Z)
            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