結果

問題 No.2739 Time is money
ユーザー anonymouslyanonymously
提出日時 2024-04-20 10:55:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 915 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 125,860 KB
最終ジャッジ日時 2024-10-12 06:31:47
合計ジャッジ時間 16,247 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 932 ms
68,736 KB
testcase_03 TLE -
testcase_04 AC 894 ms
66,304 KB
testcase_05 AC 1,581 ms
70,144 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,770 ms
107,904 KB
testcase_11 TLE -
testcase_12 AC 1,778 ms
119,168 KB
testcase_13 AC 1,771 ms
118,912 KB
testcase_14 AC 1,705 ms
112,768 KB
testcase_15 AC 1,685 ms
106,664 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N,M,X=map(int,input().split())
G=[{} for i in range(N)]
for j in range(M):
    u,v,c,t=map(int,input().split())
    u-=1
    v-=1
    G[u][v]=(c,t)
    G[v][u]=(c,t)

def dijkstra(s,g):
    cost=[float("inf")]*N
    prev=[None]*N
    cost[s]=0
    Q=[(0,s)]
    heapq.heapify(Q)
    while Q:
        d,v=heapq.heappop(Q)
        if d>cost[v]:
            continue
        for u in G[v]:
            c,t=G[u][v]
            #(かかる時間)=c/X+t
            money=c+X*t
            if cost[v]+money<cost[u]:
                cost[u]=cost[v]+money
                heapq.heappush(Q,(cost[u],u))
                prev[u]=v
    
    if prev[g] is None:
        return -1
    else:
        c=0
        t=0
        v=g
        u=prev[v]
        while u is not None:
            c+=G[u][v][0]
            t+=G[u][v][1]
            v=u
            u=prev[v]
        return (c+X-1)//X+t

print(dijkstra(0,N-1))
0