結果

問題 No.2739 Time is money
ユーザー tassei903tassei903
提出日時 2024-04-17 03:19:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 131,192 KB
最終ジャッジ日時 2024-10-08 13:03:51
合計ジャッジ時間 16,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 304 ms
104,576 KB
testcase_03 AC 909 ms
119,108 KB
testcase_04 AC 286 ms
102,576 KB
testcase_05 AC 628 ms
107,744 KB
testcase_06 AC 781 ms
115,480 KB
testcase_07 AC 999 ms
129,956 KB
testcase_08 AC 1,033 ms
130,624 KB
testcase_09 AC 1,035 ms
131,108 KB
testcase_10 AC 517 ms
122,624 KB
testcase_11 AC 1,063 ms
131,192 KB
testcase_12 AC 532 ms
126,128 KB
testcase_13 AC 508 ms
126,528 KB
testcase_14 WA -
testcase_15 AC 564 ms
127,792 KB
testcase_16 AC 530 ms
121,628 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 688 ms
128,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
INF = 10**18
def dijkstra(g, s, n):
    dist = [INF]*n
    hq = [(0, s)]
    dist[s] = 0
    while hq:
        d, v = heappop(hq)
        if dist[v]!=d:
            continue
        for to, c in g[v]:
            if dist[v] + c < dist[to]:
                dist[to] = dist[v] + c
                heappush(hq, (dist[to], to))
    return dist
from math import ceil
n, m, x = list(map(int, input().split()))
g = [[] for _ in range(n)]

for i in range(m):
    u,v,c,t = list(map(int, input().split()))
    u -= 1
    v -= 1
    g[u].append((v,t+c/x))
    g[v].append((u,t+c/x))

dist = dijkstra(g, 0, n)
if dist[-1] == INF:
    print(-1)
else:
    print(ceil(dist[-1]))
0