結果

問題 No.2739 Time is money
ユーザー ThetaTheta
提出日時 2024-04-23 17:44:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,309 ms / 2,000 ms
コード長 1,095 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 159,924 KB
最終ジャッジ日時 2024-10-15 18:20:55
合計ジャッジ時間 19,027 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,864 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 346 ms
113,280 KB
testcase_03 AC 1,061 ms
137,124 KB
testcase_04 AC 291 ms
111,972 KB
testcase_05 AC 731 ms
116,888 KB
testcase_06 AC 895 ms
120,572 KB
testcase_07 AC 1,201 ms
157,944 KB
testcase_08 AC 1,262 ms
159,924 KB
testcase_09 AC 1,309 ms
158,676 KB
testcase_10 AC 505 ms
137,600 KB
testcase_11 AC 1,286 ms
158,896 KB
testcase_12 AC 471 ms
146,304 KB
testcase_13 AC 468 ms
146,688 KB
testcase_14 AC 428 ms
145,024 KB
testcase_15 AC 739 ms
148,936 KB
testcase_16 AC 805 ms
136,068 KB
testcase_17 AC 1,169 ms
155,392 KB
testcase_18 AC 1,169 ms
155,436 KB
testcase_19 AC 858 ms
147,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
from math import inf, isinf

import sys


def printe(*args, end="\n", **kwargs):
    print(*args, end=end, file=sys.stderr, **kwargs)


def main():
    N, M, X = map(int, input().split())
    graph = [{} for _ in range(N)]
    for _ in range(M):
        u, v, C, T = map(int, input().split())
        graph[u - 1][v - 1] = (C + T * X, T)
        graph[v - 1][u - 1] = (C + T * X, T)

    distance = [(inf, inf)] * N
    distance[0] = (0, 0)
    queue = [(0, 0, 0)]
    while queue:
        c_total, c_t, c_n = heappop(queue)
        if distance[c_n][0] < c_total:
            continue
        for n_n, (n_total, n_t) in graph[c_n].items():
            if distance[n_n][0] > c_total + n_total:
                distance[n_n] = (c_total + n_total, c_t + n_t)
                heappush(queue, (c_total + n_total, c_t + n_t, n_n))
    if isinf(distance[N - 1][0]):
        print(-1)
    else:
        print(distance[N - 1][1] + (distance[N - 1]
                                    [0] - distance[N - 1][1] * X + X - 1) // X)


if __name__ == "__main__":
    main()
0