結果

問題 No.1284 Flip Game
ユーザー ああいいああいい
提出日時 2022-02-19 14:51:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,298 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 281,844 KB
最終ジャッジ日時 2024-06-29 10:24:50
合計ジャッジ時間 14,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,864 KB
testcase_01 AC 36 ms
52,864 KB
testcase_02 AC 131 ms
78,616 KB
testcase_03 AC 33 ms
52,736 KB
testcase_04 AC 35 ms
52,608 KB
testcase_05 AC 35 ms
52,608 KB
testcase_06 AC 35 ms
52,608 KB
testcase_07 AC 35 ms
52,992 KB
testcase_08 AC 34 ms
52,864 KB
testcase_09 AC 36 ms
54,144 KB
testcase_10 AC 42 ms
54,400 KB
testcase_11 AC 92 ms
76,672 KB
testcase_12 AC 104 ms
76,780 KB
testcase_13 AC 148 ms
78,444 KB
testcase_14 AC 138 ms
78,672 KB
testcase_15 AC 191 ms
88,400 KB
testcase_16 AC 167 ms
85,764 KB
testcase_17 AC 391 ms
149,056 KB
testcase_18 AC 390 ms
149,052 KB
testcase_19 AC 1,301 ms
272,328 KB
testcase_20 AC 446 ms
152,096 KB
testcase_21 AC 328 ms
150,804 KB
testcase_22 AC 438 ms
151,480 KB
testcase_23 TLE -
testcase_24 AC 1,957 ms
280,192 KB
testcase_25 AC 1,977 ms
280,952 KB
testcase_26 AC 1,414 ms
272,332 KB
testcase_27 AC 1,731 ms
277,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

inf = 10 ** 11
ans = 10 ** 11
import heapq
def pack(S,T,j):
    return (S << 13) + (T << 4) + j
def unpack(z):
    S = z >> 13
    z %= (1 << 13)
    T = z >> 4
    j = z % (1 << 4)
    return (S,T,j)
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,pack(1 << i,0,i))]
    while q:
        d,z = heapq.heappop(q)
        S,T,last = unpack(z)
        if S == (1 << N) - 1:break
        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],pack(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],pack(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