結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,736 KB
testcase_01 AC 34 ms
53,516 KB
testcase_02 AC 233 ms
104,416 KB
testcase_03 AC 669 ms
118,816 KB
testcase_04 AC 215 ms
100,472 KB
testcase_05 AC 505 ms
107,076 KB
testcase_06 AC 591 ms
115,712 KB
testcase_07 AC 751 ms
129,060 KB
testcase_08 AC 853 ms
130,000 KB
testcase_09 AC 884 ms
130,100 KB
testcase_10 AC 367 ms
118,244 KB
testcase_11 AC 819 ms
129,892 KB
testcase_12 AC 365 ms
126,672 KB
testcase_13 AC 361 ms
127,172 KB
testcase_14 WA -
testcase_15 AC 432 ms
126,508 KB
testcase_16 AC 410 ms
122,132 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 593 ms
125,916 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