結果

問題 No.1868 Teleporting Cyanmond
ユーザー qibqib
提出日時 2023-03-13 03:20:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 98,164 KB
最終ジャッジ日時 2024-09-18 07:20:29
合計ジャッジ時間 6,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,772 KB
testcase_01 AC 40 ms
52,992 KB
testcase_02 AC 40 ms
52,620 KB
testcase_03 AC 221 ms
96,768 KB
testcase_04 AC 137 ms
92,896 KB
testcase_05 AC 106 ms
77,260 KB
testcase_06 AC 127 ms
79,336 KB
testcase_07 AC 165 ms
87,932 KB
testcase_08 AC 142 ms
82,248 KB
testcase_09 AC 150 ms
86,224 KB
testcase_10 AC 215 ms
95,152 KB
testcase_11 AC 94 ms
76,480 KB
testcase_12 AC 143 ms
81,296 KB
testcase_13 AC 166 ms
88,224 KB
testcase_14 AC 209 ms
96,792 KB
testcase_15 AC 175 ms
92,984 KB
testcase_16 AC 126 ms
79,080 KB
testcase_17 AC 137 ms
81,100 KB
testcase_18 AC 246 ms
98,164 KB
testcase_19 AC 200 ms
97,928 KB
testcase_20 AC 201 ms
98,000 KB
testcase_21 AC 229 ms
97,936 KB
testcase_22 AC 260 ms
98,148 KB
testcase_23 AC 149 ms
97,928 KB
testcase_24 AC 155 ms
97,996 KB
testcase_25 AC 151 ms
97,744 KB
testcase_26 AC 151 ms
97,860 KB
testcase_27 AC 151 ms
97,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

INF = 1 << 60

n = int(input())
r = list(map(int, input().split()))
g = [[] for _ in range(n)]
for u in range(n - 1):
  g[u].append((r[u] - 1, 1))

for u in range(n - 1):
  g[u + 1].append((u, 0))

src = 0
dist = [INF for _ in range(n)]
dist[src] = 0
hp = [(0, src)]
while len(hp) > 0:
  cd, cur = heapq.heappop(hp)
  if cd > dist[cur]:
    continue
  for nxt, cost in g[cur]:
    if dist[nxt] > dist[cur] + cost:
      dist[nxt] = dist[cur] + cost
      heapq.heappush(hp, (dist[nxt], nxt))

print(dist[-1])
0