結果

問題 No.2739 Time is money
ユーザー N-noa21N-noa21
提出日時 2024-09-29 19:07:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,036 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 1,273 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 130,616 KB
最終ジャッジ日時 2024-09-29 19:07:38
合計ジャッジ時間 14,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,220 KB
testcase_01 AC 38 ms
53,624 KB
testcase_02 AC 299 ms
103,944 KB
testcase_03 AC 852 ms
119,336 KB
testcase_04 AC 263 ms
99,480 KB
testcase_05 AC 626 ms
107,920 KB
testcase_06 AC 727 ms
115,056 KB
testcase_07 AC 975 ms
129,376 KB
testcase_08 AC 1,010 ms
130,148 KB
testcase_09 AC 1,008 ms
130,040 KB
testcase_10 AC 477 ms
122,032 KB
testcase_11 AC 1,036 ms
130,616 KB
testcase_12 AC 468 ms
123,940 KB
testcase_13 AC 476 ms
124,160 KB
testcase_14 AC 446 ms
125,252 KB
testcase_15 AC 507 ms
125,592 KB
testcase_16 AC 516 ms
122,000 KB
testcase_17 AC 943 ms
128,956 KB
testcase_18 AC 998 ms
129,196 KB
testcase_19 AC 667 ms
126,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X = map(int, input().split())
edge = [[] for i in range(N)]

for i in range(M):
    u,v,c,t = map(int, input().split())
    u-=1;v-=1
    edge[u].append((v,(t+c/X)*10**12))
    edge[v].append((u,(t+c/X)*10**12))

from heapq import *
INF = 10**24
def dijkstra(N, edge, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in edge[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist
import math
d = dijkstra(N,edge,0)
ans = d[-1]
print(math.ceil(ans/10**12) if ans != INF else -1)
0