結果

問題 No.1284 Flip Game
ユーザー ああいいああいい
提出日時 2022-02-19 14:46:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,065 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 296,656 KB
最終ジャッジ日時 2024-06-29 10:24:31
合計ジャッジ時間 13,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,240 KB
testcase_01 AC 48 ms
53,248 KB
testcase_02 AC 178 ms
78,528 KB
testcase_03 AC 39 ms
52,912 KB
testcase_04 AC 40 ms
52,608 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 41 ms
53,124 KB
testcase_08 AC 41 ms
52,480 KB
testcase_09 AC 57 ms
64,896 KB
testcase_10 AC 59 ms
65,408 KB
testcase_11 AC 114 ms
76,796 KB
testcase_12 AC 113 ms
77,116 KB
testcase_13 AC 170 ms
79,124 KB
testcase_14 AC 174 ms
78,872 KB
testcase_15 AC 313 ms
91,380 KB
testcase_16 AC 312 ms
91,036 KB
testcase_17 AC 646 ms
153,592 KB
testcase_18 AC 646 ms
153,976 KB
testcase_19 TLE -
testcase_20 AC 1,136 ms
167,620 KB
testcase_21 AC 1,187 ms
168,156 KB
testcase_22 AC 1,146 ms
168,344 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

inf = 10 ** 11
ans = 10 ** 11
import heapq
for i in range(N):
    dp = [[[inf] * N for _ in range(1 << N)] for _ in range(1 << N)]
    dp[1 << i][0][i] = 0
    q = [(0,1 << i,0,i)]
    while q:
        d,S,T,last = heapq.heappop(q)
        maskl = 1 << last
        for j in range(N):
            maskj = 1 << j
            if S & maskj:continue
            if T & maskl:
                if dp[S | maskj][T][j] > d + c[last][j]:
                    dp[S | maskj][T][j] = d + c[last][j]
                    heapq.heappush(q,(d + c[last][j],S|maskj,T,j))
            else:
                bit =(S | maskj) ^ maskl
                if dp[bit][T | maskl][j] > d + c[last][j]:
                    dp[bit][T | maskl][j] = d + c[last][j]
                    heapq.heappush(q,(d + c[last][j],bit,T | maskl,j))
    _min = inf
    for T in range(1 << N):
        for j in range(N):
            if dp[-1][T][j] < _min:
                _min = dp[-1][T][j]
    if _min < ans:
        ans = _min
print(ans)
0