結果

問題 No.2739 Time is money
ユーザー N-noa21N-noa21
提出日時 2024-09-29 18:22:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-09-29 18:35:44
合計ジャッジ時間 26,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 753 ms
54,016 KB
testcase_03 AC 1,438 ms
75,136 KB
testcase_04 AC 669 ms
52,352 KB
testcase_05 AC 997 ms
57,856 KB
testcase_06 AC 1,321 ms
71,680 KB
testcase_07 AC 1,679 ms
90,240 KB
testcase_08 AC 1,729 ms
90,496 KB
testcase_09 AC 1,847 ms
90,240 KB
testcase_10 AC 1,219 ms
82,944 KB
testcase_11 AC 1,735 ms
90,240 KB
testcase_12 AC 1,328 ms
89,472 KB
testcase_13 AC 1,312 ms
89,472 KB
testcase_14 WA -
testcase_15 AC 1,196 ms
83,840 KB
testcase_16 AC 1,306 ms
84,480 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,397 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X = map(int, input().split())
edge = [[] for i in range(N)]

for i in range(M):
    u,v,c,t = map(int, input().split())
    u-=1;v-=1
    edge[u].append((v,t+c/X))
    edge[v].append((u,t+c/X))

from heapq import heappush, heappop
INF = 10**12
def dijkstra(N, edge, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in edge[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist
import math
d = dijkstra(N,edge,0)
ans = d[-1]
print(math.ceil(ans) if ans != INF else -1)
0