結果

問題 No.1284 Flip Game
ユーザー titiatitia
提出日時 2020-11-06 23:24:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,035 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-07-22 13:45:22
合計ジャッジ時間 11,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 125 ms
76,728 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 37 ms
52,864 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 37 ms
52,992 KB
testcase_08 AC 38 ms
53,248 KB
testcase_09 AC 56 ms
65,664 KB
testcase_10 AC 56 ms
66,048 KB
testcase_11 AC 97 ms
76,884 KB
testcase_12 AC 103 ms
76,928 KB
testcase_13 AC 122 ms
76,672 KB
testcase_14 AC 129 ms
76,900 KB
testcase_15 AC 216 ms
77,056 KB
testcase_16 AC 228 ms
77,144 KB
testcase_17 AC 161 ms
76,796 KB
testcase_18 AC 164 ms
77,184 KB
testcase_19 AC 315 ms
78,308 KB
testcase_20 AC 675 ms
77,072 KB
testcase_21 AC 801 ms
77,124 KB
testcase_22 AC 592 ms
77,312 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 321 ms
78,848 KB
testcase_27 AC 922 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

ANS=[1<<60]
DP=[[1<<60]*(3**N) for i in range(N)]

def shuku(A):
    k=0
    for i in range(N):
        k+=A[i]*(3**i)
    return k

def modos(x):
    S=[0]*N
    for i in range(N):
        S[i]=(x%(3**(i+1)))//(3**i)
    return S
        

def calc(xx,f):
    A=modos(xx)

    if sum(A)==2*N:
        ANS[0]=min(ANS[0],DP[f][xx])
        return
    if sum(A)==2*N-1:
        x=A.index(1)
        if x==f:
            ANS[0]=min(ANS[0],DP[f][xx])
            return
            
    for i in range(N):
        if i==f:
            continue
        if A[i]==2:
            continue

        A[i]+=1
        if DP[i][shuku(A)]>DP[f][xx]+C[f][i]:
            DP[i][shuku(A)]=DP[f][xx]+C[f][i]
            Q.append((i,shuku(A)))
        A[i]-=1

A=[0]*N
Q=[]
for i in range(N):
    A[i]+=1
    DP[i][shuku(A)]=0
    Q.append((i,shuku(A)))
    A[i]-=1

while Q:
    f,x=Q.pop()
    calc(x,f)
    

print(ANS[0])


    
            
0