結果

問題 No.1284 Flip Game
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-11-07 01:59:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 79,804 KB
最終ジャッジ日時 2024-07-22 14:03:58
合計ジャッジ時間 3,183 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,036 KB
testcase_01 AC 37 ms
52,828 KB
testcase_02 AC 58 ms
67,980 KB
testcase_03 AC 37 ms
52,660 KB
testcase_04 AC 36 ms
53,280 KB
testcase_05 AC 37 ms
52,332 KB
testcase_06 AC 37 ms
52,684 KB
testcase_07 AC 37 ms
52,396 KB
testcase_08 AC 38 ms
53,384 KB
testcase_09 AC 38 ms
54,076 KB
testcase_10 AC 39 ms
54,224 KB
testcase_11 AC 52 ms
65,272 KB
testcase_12 AC 52 ms
64,524 KB
testcase_13 AC 56 ms
66,696 KB
testcase_14 AC 60 ms
68,304 KB
testcase_15 AC 66 ms
70,108 KB
testcase_16 AC 66 ms
70,848 KB
testcase_17 AC 77 ms
71,816 KB
testcase_18 AC 77 ms
71,072 KB
testcase_19 AC 124 ms
79,724 KB
testcase_20 AC 78 ms
71,760 KB
testcase_21 AC 75 ms
70,884 KB
testcase_22 AC 75 ms
71,760 KB
testcase_23 AC 122 ms
79,460 KB
testcase_24 AC 131 ms
79,552 KB
testcase_25 AC 125 ms
79,556 KB
testcase_26 AC 130 ms
79,804 KB
testcase_27 AC 123 ms
79,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, = map(int, input().split())
X = []
for _ in range(N):
    X.append(list(map(int, input().split())))

def dist(u,v):
    return X[u][v]


dp = [[10**18]*N for _ in range(3**N)]
for v in range(N):
    dp[3**v][v] = 0
for b in range(1, 3**N):
    for v in range(N):
        vb = (b//(3**v))%3
        if not vb: 
            continue
        for u in range(N):
            ub = (b//(3**u))%3
            if not ub:
                continue
            if u==v:
                if b+1 == 3**N and vb == 2:
                    dp[b][v] = min(dp[b][v], dp[b-3**v][u] + dist(u, v))
                continue
            dp[b][v] = min(dp[b][v], dp[b-3**v][u] + dist(u, v))


print(min(dp[3**N-1]))
0