結果

問題 No.1449 新プロランド
ユーザー rlangevinrlangevin
提出日時 2023-01-22 10:35:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 1,538 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 94,288 KB
最終ジャッジ日時 2024-06-06 11:11:51
合計ジャッジ時間 6,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
65,152 KB
testcase_01 AC 94 ms
77,312 KB
testcase_02 AC 145 ms
79,160 KB
testcase_03 AC 72 ms
72,320 KB
testcase_04 AC 113 ms
77,492 KB
testcase_05 AC 265 ms
94,288 KB
testcase_06 AC 236 ms
87,808 KB
testcase_07 AC 195 ms
85,888 KB
testcase_08 AC 236 ms
92,160 KB
testcase_09 AC 203 ms
84,332 KB
testcase_10 AC 229 ms
88,864 KB
testcase_11 AC 181 ms
88,192 KB
testcase_12 AC 237 ms
90,164 KB
testcase_13 AC 194 ms
83,888 KB
testcase_14 AC 151 ms
87,168 KB
testcase_15 AC 240 ms
88,960 KB
testcase_16 AC 201 ms
84,896 KB
testcase_17 AC 224 ms
86,272 KB
testcase_18 AC 59 ms
66,560 KB
testcase_19 AC 72 ms
76,288 KB
testcase_20 AC 50 ms
61,568 KB
testcase_21 AC 197 ms
86,908 KB
testcase_22 AC 141 ms
78,672 KB
testcase_23 AC 205 ms
90,548 KB
testcase_24 AC 201 ms
82,028 KB
testcase_25 AC 67 ms
70,912 KB
testcase_26 AC 93 ms
76,928 KB
testcase_27 AC 267 ms
93,440 KB
testcase_28 AC 248 ms
86,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
inf = float('inf')


def dijkstra(s, g, N):
    # ゴールがない場合はg=-1とする。

    def cost(v, m):
        return v * N + m

    dist = [inf] * N
    mindist = [inf] * N
    seen = [False] * N
    Q = [cost(0, s)]
    while Q:
        c, m = divmod(heappop(Q), N)
        if seen[m]:
            continue
        seen[m] = True
        dist[m] = c
        if m == g:
            return dist

        #------heapをアップデートする。--------
        for u, C in G[m]:
            if seen[u]:
                continue
            newdist = dist[m] + C

            #------------------------------------
            if newdist >= mindist[u]:
                continue
            mindist[u] = newdist
            heappush(Q, cost(newdist, u))
    return dist

def f(n, m):
    return n * (mx + 1) + m

N, M = map(int, input().split())
mx = 1001
N *= mx + 1
G = [[] for i in range(N)]
A, B, C = [0] * M, [0] * M, [0] * M
for i in range(M):
    A[i], B[i], C[i] = map(int, input().split())
    A[i], B[i] = A[i] - 1, B[i] - 1
    
T = list(map(int, input().split()))
for i in range(M):
    for p in range(mx + 1):
        if p + T[A[i]]:
            G[f(A[i], p)].append((f(B[i], min(mx, p + T[A[i]])), C[i]//(p + T[A[i]]) + T[A[i]]))
        if p + T[B[i]]:
            G[f(B[i], p)].append((f(A[i], min(mx, p + T[B[i]])), C[i]//(p + T[B[i]]) + T[B[i]]))
        
D = dijkstra(f(0, 0), -1, N)
ans = inf
for i in range(mx + 1):
    ans = min(ans, D[f(N//(mx + 1) - 1, i)])
print(ans)
0