結果

問題 No.2739 Time is money
ユーザー detteiuudetteiuu
提出日時 2024-09-08 15:20:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 857 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 1,004 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 115,856 KB
最終ジャッジ日時 2024-09-08 15:21:08
合計ジャッジ時間 15,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,204 KB
testcase_01 AC 41 ms
52,396 KB
testcase_02 AC 281 ms
95,760 KB
testcase_03 AC 729 ms
106,976 KB
testcase_04 AC 262 ms
95,664 KB
testcase_05 AC 527 ms
97,556 KB
testcase_06 AC 639 ms
102,540 KB
testcase_07 AC 826 ms
114,624 KB
testcase_08 AC 823 ms
115,384 KB
testcase_09 AC 843 ms
115,472 KB
testcase_10 AC 451 ms
109,976 KB
testcase_11 AC 857 ms
115,856 KB
testcase_12 AC 420 ms
111,048 KB
testcase_13 AC 431 ms
111,136 KB
testcase_14 AC 400 ms
111,000 KB
testcase_15 AC 443 ms
113,156 KB
testcase_16 AC 428 ms
107,196 KB
testcase_17 AC 784 ms
115,164 KB
testcase_18 AC 841 ms
114,948 KB
testcase_19 AC 549 ms
112,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

N, M, X = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    u, v, C, T = map(int, input().split())
    G[u-1].append((v-1, C+T*X))
    G[v-1].append((u-1, C+T*X))

INF = 10**18
def dijkstra(start):
    dist = [INF]*N
    dist[start] = 0
    visited = [False]*N
    que = [(0, start)]
    while que:
        d, now = heappop(que)
        if visited[now]:
            continue
        visited[now] = True
        for next, weight in G[now]:
            if dist[now]+weight < dist[next]:
                dist[next] = dist[now]+weight
                heappush(que, (dist[next], next))
    return dist

dist = dijkstra(0)
if dist[-1] == INF:
    print(-1)
else:
    print((dist[-1]+X-1)//X)
0