結果

問題 No.2739 Time is money
ユーザー titiatitia
提出日時 2024-12-11 06:06:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,252 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 161,152 KB
最終ジャッジ日時 2024-12-11 06:07:17
合計ジャッジ時間 18,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 260 ms
112,820 KB
testcase_03 AC 1,065 ms
144,780 KB
testcase_04 AC 235 ms
112,640 KB
testcase_05 AC 767 ms
125,312 KB
testcase_06 AC 902 ms
139,672 KB
testcase_07 AC 1,140 ms
157,440 KB
testcase_08 AC 1,221 ms
160,384 KB
testcase_09 AC 1,243 ms
160,768 KB
testcase_10 AC 416 ms
136,064 KB
testcase_11 AC 1,252 ms
161,152 KB
testcase_12 AC 405 ms
145,152 KB
testcase_13 AC 417 ms
145,132 KB
testcase_14 AC 421 ms
131,456 KB
testcase_15 AC 783 ms
151,800 KB
testcase_16 AC 825 ms
145,792 KB
testcase_17 AC 1,171 ms
160,000 KB
testcase_18 AC 1,160 ms
153,336 KB
testcase_19 AC 812 ms
139,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush

N,M,X=map(int,input().split())

E=[[] for i in range(N+1)]

for i in range(M):
    x,y,c,t=map(int,input().split())
    E[x].append((y,t,c))
    E[y].append((x,t,c))

DIS=[(1<<60,1<<60)]*(N+1)
DIS[1]=(0,0)

Q=[(0,0,1)]

while Q:
    x,y,town=heappop(Q)
    if DIS[town]!=(x,y):
        continue

    for to,time,cost in E[town]:
        z=x+time
        w=y+cost

        z+=w//X
        w%=X

        if DIS[to]>(z,w):
            DIS[to]=(z,w)
            heappush(Q,(z,w,to))

#print(DIS[N])

if DIS[N][0]>=1<<58:
    print(-1)
else:
    ANS=DIS[N][0]
    if DIS[N][1]>0:
        ANS+=1
    print(ANS)
        
0