結果

問題 No.1868 Teleporting Cyanmond
ユーザー wolgnikwolgnik
提出日時 2022-03-11 21:24:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 98,176 KB
最終ジャッジ日時 2024-09-16 01:23:57
合計ジャッジ時間 3,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 39 ms
53,248 KB
testcase_03 AC 103 ms
96,384 KB
testcase_04 AC 89 ms
92,800 KB
testcase_05 AC 54 ms
65,920 KB
testcase_06 AC 57 ms
70,784 KB
testcase_07 AC 83 ms
87,424 KB
testcase_08 AC 65 ms
76,160 KB
testcase_09 AC 80 ms
86,144 KB
testcase_10 AC 109 ms
95,232 KB
testcase_11 AC 52 ms
63,872 KB
testcase_12 AC 62 ms
73,984 KB
testcase_13 AC 83 ms
87,936 KB
testcase_14 AC 104 ms
96,640 KB
testcase_15 AC 93 ms
92,672 KB
testcase_16 AC 56 ms
68,992 KB
testcase_17 AC 62 ms
73,344 KB
testcase_18 AC 103 ms
97,920 KB
testcase_19 AC 104 ms
98,048 KB
testcase_20 AC 105 ms
97,920 KB
testcase_21 AC 105 ms
97,920 KB
testcase_22 AC 106 ms
97,792 KB
testcase_23 AC 102 ms
98,176 KB
testcase_24 AC 105 ms
97,792 KB
testcase_25 AC 103 ms
97,792 KB
testcase_26 AC 103 ms
97,920 KB
testcase_27 AC 104 ms
98,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))

e = [[] for _ in range(N)]
for x in range(N - 1): e[x + 1].append((x, 0))
for i in range(N - 1): e[i].append((a[i] - 1, 1))

from collections import deque as dq

Q = dq([0])
dp = [N + 1] * N
dp[0] = 0
while len(Q):
  x = Q.popleft()
  for y, c in e[x]:
    if dp[y] > dp[x] + c:
      dp[y] = dp[x] + c
      if c: Q.append(y)
      else: Q.appendleft(y)
print(dp[-1])
0