結果

問題 No.1284 Flip Game
ユーザー titiatitia
提出日時 2020-11-06 23:00:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 974 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,372 KB
最終ジャッジ日時 2024-07-22 13:31:40
合計ジャッジ時間 14,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,824 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 103 ms
11,648 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 39 ms
10,880 KB
testcase_12 AC 42 ms
11,008 KB
testcase_13 AC 96 ms
11,520 KB
testcase_14 AC 113 ms
11,392 KB
testcase_15 AC 444 ms
13,056 KB
testcase_16 AC 488 ms
13,056 KB
testcase_17 AC 259 ms
18,108 KB
testcase_18 AC 269 ms
19,064 KB
testcase_19 AC 936 ms
36,372 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
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