結果

問題 No.2739 Time is money
ユーザー N-noa21N-noa21
提出日時 2024-09-29 18:21:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 129,976 KB
最終ジャッジ日時 2024-09-29 18:35:07
合計ジャッジ時間 11,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,088 KB
testcase_01 AC 34 ms
53,936 KB
testcase_02 AC 239 ms
104,556 KB
testcase_03 AC 674 ms
118,692 KB
testcase_04 AC 220 ms
100,408 KB
testcase_05 AC 502 ms
107,216 KB
testcase_06 AC 590 ms
115,584 KB
testcase_07 AC 804 ms
129,056 KB
testcase_08 AC 785 ms
129,492 KB
testcase_09 AC 822 ms
129,976 KB
testcase_10 AC 393 ms
118,232 KB
testcase_11 AC 807 ms
129,900 KB
testcase_12 AC 369 ms
126,616 KB
testcase_13 AC 446 ms
126,552 KB
testcase_14 WA -
testcase_15 AC 443 ms
126,432 KB
testcase_16 AC 408 ms
121,616 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 546 ms
126,404 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))
    edge[v].append((u,t+c/X))

from heapq import heappush, heappop
INF = 10**12
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) if ans != INF else -1)
0