結果

問題 No.2739 Time is money
ユーザー ButterflvButterflv
提出日時 2024-04-23 20:17:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,525 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 163,764 KB
最終ジャッジ日時 2024-11-06 02:33:23
合計ジャッジ時間 20,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,828 KB
testcase_01 AC 40 ms
53,308 KB
testcase_02 AC 304 ms
111,396 KB
testcase_03 AC 1,397 ms
148,728 KB
testcase_04 AC 305 ms
110,660 KB
testcase_05 AC 1,029 ms
129,228 KB
testcase_06 AC 1,467 ms
147,860 KB
testcase_07 AC 1,322 ms
156,584 KB
testcase_08 AC 1,417 ms
160,236 KB
testcase_09 AC 1,525 ms
161,672 KB
testcase_10 AC 511 ms
140,696 KB
testcase_11 AC 1,502 ms
161,704 KB
testcase_12 AC 510 ms
142,612 KB
testcase_13 AC 501 ms
142,848 KB
testcase_14 AC 464 ms
129,804 KB
testcase_15 AC 906 ms
155,636 KB
testcase_16 AC 906 ms
145,076 KB
testcase_17 AC 1,502 ms
163,764 KB
testcase_18 AC 1,463 ms
156,800 KB
testcase_19 AC 1,182 ms
149,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

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, C, T))
  edge[v].append((u, C, T))

d=[]
timeMIN=[None for i in range(N)]
heapq.heapify(d)

# 各タプルは (時間, - 残りのお金, 頂点) で入れる
heapq.heappush(d, (0, 0, 0))

while len(d)>0:
  t, mon, v=heapq.heappop(d)
  mon*=-1
  if timeMIN[v]==None: timeMIN[v]=t
  else: continue
  for nv, C, T in edge[v]:
    if timeMIN[nv]!=None: continue
    nt=t+T
    nmon=mon-C
    if nmon<0:
      nt+=(abs(nmon)+X-1)//X
      nmon%=X
    heapq.heappush(d, (nt, -nmon, nv))

print(timeMIN[N-1] if timeMIN[-1]!=None else -1)
0