結果

問題 No.2739 Time is money
ユーザー NPNP
提出日時 2024-04-20 23:06:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 945 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 182,344 KB
最終ジャッジ日時 2024-10-12 21:30:39
合計ジャッジ時間 15,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 41 ms
52,992 KB
testcase_02 AC 272 ms
115,968 KB
testcase_03 AC 706 ms
146,336 KB
testcase_04 AC 281 ms
116,736 KB
testcase_05 AC 491 ms
125,632 KB
testcase_06 AC 834 ms
149,160 KB
testcase_07 AC 968 ms
170,972 KB
testcase_08 AC 713 ms
156,372 KB
testcase_09 AC 761 ms
159,676 KB
testcase_10 AC 546 ms
152,192 KB
testcase_11 AC 1,212 ms
181,972 KB
testcase_12 AC 651 ms
181,656 KB
testcase_13 AC 656 ms
182,044 KB
testcase_14 WA -
testcase_15 AC 627 ms
161,864 KB
testcase_16 AC 357 ms
137,272 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 833 ms
162,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import math
def dijkstra(graph, start, end, X):
    pq = [(0, start)]
    visited = set()
    while pq:
        time, node = heapq.heappop(pq)
        if node in visited:
            continue
        visited.add(node)
        if node == end:
            return time
        for neighbor, cost, travel_time in graph[node]:
            if neighbor not in visited:
                total_time = travel_time + cost / X
                heapq.heappush(pq, (time + total_time, neighbor))
    return -1

def solve(N, M, X, roads):
    graph = {i: [] for i in range(1, N+1)}
    for u, v, C, T in roads:
        graph[u].append((v, C, T))
        graph[v].append((u, C, T))  
    min_time = dijkstra(graph, 1, N, X)
    return min_time
N, M, X = map(int, input().split())
roads = [tuple(map(int, input().split())) for _ in range(M)]
min_time = solve(N, M, X, roads)
floor_time = math.ceil(min_time)
print(floor_time if min_time != -1 else -1)
0