結果

問題 No.2739 Time is money
ユーザー kaeru82433413kaeru82433413
提出日時 2024-04-21 19:55:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 132,276 KB
最終ジャッジ日時 2024-10-13 18:38:07
合計ジャッジ時間 14,162 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 WA -
testcase_03 AC 752 ms
113,684 KB
testcase_04 WA -
testcase_05 AC 632 ms
103,536 KB
testcase_06 AC 836 ms
115,168 KB
testcase_07 AC 841 ms
117,812 KB
testcase_08 AC 873 ms
119,764 KB
testcase_09 AC 915 ms
121,548 KB
testcase_10 WA -
testcase_11 AC 900 ms
121,088 KB
testcase_12 AC 513 ms
110,836 KB
testcase_13 AC 495 ms
110,624 KB
testcase_14 AC 397 ms
109,708 KB
testcase_15 AC 530 ms
129,976 KB
testcase_16 AC 482 ms
110,836 KB
testcase_17 AC 857 ms
122,376 KB
testcase_18 AC 976 ms
121,452 KB
testcase_19 AC 749 ms
132,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop as pop, heappush as push

N, M, X = map(int, input().split())
edges = [[] for _ in range(N)]
for _ in range(M):
    u, v, C, T = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append((v, C+T*X))
    edges[v].append((u, C+T*X))

queue = [(0, 0)]
ans = [-1]*N

while queue:
    c, v = pop(queue)
    if ans[v] != -1:
        continue
    ans[v] = c

    for u, c_ in edges[v]:
        push(queue, (c+c_, u))
print((ans[-1]-1)//X+1)
0