結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 WA -
testcase_03 AC 761 ms
114,192 KB
testcase_04 WA -
testcase_05 AC 584 ms
103,792 KB
testcase_06 AC 778 ms
114,820 KB
testcase_07 AC 829 ms
117,444 KB
testcase_08 AC 862 ms
119,936 KB
testcase_09 AC 916 ms
121,288 KB
testcase_10 WA -
testcase_11 AC 888 ms
120,960 KB
testcase_12 AC 479 ms
110,720 KB
testcase_13 AC 488 ms
110,336 KB
testcase_14 AC 391 ms
109,696 KB
testcase_15 AC 548 ms
130,108 KB
testcase_16 AC 500 ms
111,104 KB
testcase_17 AC 870 ms
122,080 KB
testcase_18 AC 898 ms
121,940 KB
testcase_19 AC 725 ms
132,280 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