結果

問題 No.1284 Flip Game
ユーザー ああいいああいい
提出日時 2022-02-19 14:55:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 1,334 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 120,544 KB
最終ジャッジ日時 2024-06-29 10:25:18
合計ジャッジ時間 6,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,864 KB
testcase_01 AC 44 ms
52,480 KB
testcase_02 AC 123 ms
77,220 KB
testcase_03 AC 44 ms
52,608 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 44 ms
52,736 KB
testcase_06 AC 45 ms
52,352 KB
testcase_07 AC 43 ms
52,736 KB
testcase_08 AC 43 ms
52,608 KB
testcase_09 AC 44 ms
52,736 KB
testcase_10 AC 46 ms
53,760 KB
testcase_11 AC 82 ms
70,144 KB
testcase_12 AC 82 ms
70,144 KB
testcase_13 AC 120 ms
76,928 KB
testcase_14 AC 122 ms
77,068 KB
testcase_15 AC 148 ms
79,360 KB
testcase_16 AC 136 ms
78,860 KB
testcase_17 AC 185 ms
86,016 KB
testcase_18 AC 188 ms
85,888 KB
testcase_19 AC 393 ms
116,956 KB
testcase_20 AC 236 ms
86,948 KB
testcase_21 AC 200 ms
86,400 KB
testcase_22 AC 196 ms
86,396 KB
testcase_23 AC 673 ms
120,140 KB
testcase_24 AC 660 ms
120,380 KB
testcase_25 AC 655 ms
120,544 KB
testcase_26 AC 395 ms
117,204 KB
testcase_27 AC 489 ms
118,880 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)
if True:
    dp = [[[inf] * N for _ in range(1 << N)] for _ in range(1 << N)]
    q = []
    for i in range(N):
        dp[1 << i][0][i] = 0
        q.append((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