結果

問題 No.2739 Time is money
ユーザー rlangevinrlangevin
提出日時 2024-04-20 14:20:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 773 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 119,500 KB
最終ジャッジ日時 2024-10-12 09:52:13
合計ジャッジ時間 9,905 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 39 ms
52,864 KB
testcase_02 AC 225 ms
101,632 KB
testcase_03 AC 468 ms
107,364 KB
testcase_04 AC 204 ms
99,904 KB
testcase_05 AC 326 ms
97,372 KB
testcase_06 AC 504 ms
103,424 KB
testcase_07 AC 630 ms
118,024 KB
testcase_08 AC 475 ms
116,736 KB
testcase_09 AC 529 ms
116,096 KB
testcase_10 AC 347 ms
110,304 KB
testcase_11 AC 773 ms
119,500 KB
testcase_12 AC 471 ms
117,936 KB
testcase_13 AC 455 ms
117,440 KB
testcase_14 AC 437 ms
118,444 KB
testcase_15 AC 327 ms
112,704 KB
testcase_16 AC 174 ms
104,448 KB
testcase_17 AC 683 ms
117,500 KB
testcase_18 AC 683 ms
117,844 KB
testcase_19 AC 401 ms
109,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappush, heappop
inf = float('inf')
def dijkstra(s, g, G):
    # ゴールがない場合はg=-1とする。

    N = len(G)

    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


N, M, X = map(int, input().split())
G = [[] for i in range(N)]
for i in range(M):
    u, v, c, t = map(int, input().split())
    u, v = u - 1, v - 1
    G[u].append((v, t * X + c))
    G[v].append((u, t * X + c))
    
D = dijkstra(0, N - 1, G)
print((D[-1]+X-1)//X) if D[-1] != inf else print("-1") 
0