結果

問題 No.2739 Time is money
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-11-11 01:02:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 722 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 115,732 KB
最終ジャッジ日時 2024-11-11 01:02:42
合計ジャッジ時間 12,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 215 ms
95,992 KB
testcase_03 AC 605 ms
106,448 KB
testcase_04 AC 219 ms
95,232 KB
testcase_05 AC 423 ms
97,660 KB
testcase_06 AC 547 ms
101,820 KB
testcase_07 AC 660 ms
114,768 KB
testcase_08 AC 722 ms
115,732 KB
testcase_09 AC 675 ms
115,176 KB
testcase_10 AC 399 ms
109,568 KB
testcase_11 AC 703 ms
115,404 KB
testcase_12 AC 340 ms
111,104 KB
testcase_13 AC 344 ms
110,924 KB
testcase_14 AC 311 ms
110,976 KB
testcase_15 AC 366 ms
111,988 KB
testcase_16 AC 400 ms
107,168 KB
testcase_17 AC 652 ms
115,200 KB
testcase_18 AC 700 ms
114,940 KB
testcase_19 AC 442 ms
112,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/2739

import heapq

MAX_INT = 10 ** 18

def main():
    N, M, X = map(int, input().split())
    next_nodes = [[] for _ in range(N)]
    for _ in range(M):
        u, v, C, T = map(int, input().split())
        next_nodes[u - 1].append((v - 1, X * T + C))
        next_nodes[v - 1].append((u - 1, X * T + C))
    
    fix = [MAX_INT ] * N
    seen = [MAX_INT] * N
    seen[0] = 0
    queue = []
    heapq.heappush(queue, (0, 0))
    while len(queue) > 0:
        cost, v = heapq.heappop(queue)
        if fix[v] < MAX_INT:
            continue

        fix[v] = cost
        for w, c in next_nodes[v]:
            if fix[w] < MAX_INT:
                continue

            new_cost = c + cost
            if seen[w] > new_cost:
                seen[w] = new_cost
                heapq.heappush(queue, (new_cost, w))
    
    if fix[N - 1] == MAX_INT:
        print(-1)
    else:
        x = fix[N - 1]
        answer = x // X + (1 if x % X > 0 else 0)
        print(answer)




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