結果

問題 No.1284 Flip Game
ユーザー titiatitia
提出日時 2020-11-06 22:59:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 974 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 133,760 KB
最終ジャッジ日時 2024-07-22 13:31:23
合計ジャッジ時間 14,538 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,472 KB
testcase_01 AC 45 ms
57,648 KB
testcase_02 AC 186 ms
78,052 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 44 ms
57,220 KB
testcase_08 AC 45 ms
57,728 KB
testcase_09 AC 58 ms
64,768 KB
testcase_10 AC 55 ms
63,488 KB
testcase_11 AC 102 ms
76,796 KB
testcase_12 AC 115 ms
77,356 KB
testcase_13 AC 180 ms
77,568 KB
testcase_14 AC 192 ms
78,112 KB
testcase_15 AC 482 ms
81,632 KB
testcase_16 AC 514 ms
81,536 KB
testcase_17 AC 323 ms
90,624 KB
testcase_18 AC 316 ms
90,720 KB
testcase_19 AC 1,023 ms
133,760 KB
testcase_20 AC 1,992 ms
95,868 KB
testcase_21 TLE -
testcase_22 AC 1,899 ms
95,528 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

DP=dict()
ANS=[1<<60]

def calc(A,f,c):
    if (A,f) in DP and DP[A,f]<c:
        return

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

        X[i]+=1
        if (tuple(X),i) in DP:
            if DP[tuple(X),i]>c+C[f][i]:
                DP[tuple(X),i]=c+C[f][i]
                Q.append((tuple(X),i,DP[tuple(X),i]))
        else:
            DP[tuple(X),i]=c+C[f][i]
            Q.append((tuple(X),i,DP[tuple(X),i]))
        X[i]-=1

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

while Q:
    A,f,c=Q.pop()
    calc(A,f,c)

print(ANS[0])


    
            
0