結果

問題 No.2739 Time is money
ユーザー N-noa21N-noa21
提出日時 2024-09-29 18:24:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 129,892 KB
最終ジャッジ日時 2024-09-29 18:35:27
合計ジャッジ時間 13,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 40 ms
52,992 KB
testcase_02 AC 301 ms
104,448 KB
testcase_03 AC 865 ms
118,772 KB
testcase_04 AC 273 ms
100,864 KB
testcase_05 AC 616 ms
107,464 KB
testcase_06 AC 772 ms
115,456 KB
testcase_07 AC 961 ms
128,936 KB
testcase_08 AC 997 ms
129,876 KB
testcase_09 AC 995 ms
129,844 KB
testcase_10 AC 437 ms
118,116 KB
testcase_11 AC 1,009 ms
129,892 KB
testcase_12 AC 433 ms
126,740 KB
testcase_13 AC 420 ms
126,848 KB
testcase_14 WA -
testcase_15 AC 482 ms
126,632 KB
testcase_16 AC 437 ms
122,252 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 656 ms
125,664 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 *
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