結果

問題 No.2739 Time is money
ユーザー tkykwtnbtkykwtnb
提出日時 2024-04-21 13:31:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 278,960 KB
最終ジャッジ日時 2024-10-13 12:09:47
合計ジャッジ時間 16,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,220 KB
testcase_01 AC 44 ms
55,684 KB
testcase_02 AC 478 ms
156,168 KB
testcase_03 AC 1,310 ms
222,284 KB
testcase_04 AC 472 ms
162,044 KB
testcase_05 WA -
testcase_06 TLE -
testcase_07 AC 1,941 ms
271,156 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 818 ms
237,628 KB
testcase_11 TLE -
testcase_12 AC 1,157 ms
264,320 KB
testcase_13 AC 1,157 ms
264,120 KB
testcase_14 AC 1,073 ms
241,504 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque,defaultdict
import heapq
N,M,X=map(int,input().split())
G=[[] for _ in range(N)]
C=defaultdict(int)
T=defaultdict(int)
for _ in range(M):
    u,v,c,t=map(int,input().split())
    u-=1;v-=1
    G[u].append(v)
    G[v].append(u)
    C[(u,v)]=c
    C[(v,u)]=c
    T[(u,v)]=t
    T[(v,u)]=t
vis=[(1<<60,1<<60,1<<60) for _ in range(N)] # t,c,m
attr=defaultdict(tuple)
hq=[]
heapq.heapify(hq)
hq.append((0,0,0,0)) # t,c,m,nxt
while hq:
    t,c,m,now=heapq.heappop(hq)
    vis[now]=(t,c,m)
    if now==N-1:break
    for nxt in G[now]:
        work=0
        if c+C[(now,nxt)]>m:
            work=(m-c+C[(now,nxt)]+X-1)//X
        if t+T[(now,nxt)]+work<vis[nxt][0] or \
            t+T[(now,nxt)]+work==vis[nxt][0] and c+C[(now,nxt)]<vis[nxt][1]:
            heapq.heappush(hq,((t+T[(now,nxt)]+work,c+C[(now,nxt)],m+X*work,nxt)))
if vis[N-1][0]==1<<60:print(-1)
else:print(vis[N-1][0])
0