結果

問題 No.1868 Teleporting Cyanmond
ユーザー rlangevinrlangevin
提出日時 2022-12-30 16:27:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 97,396 KB
最終ジャッジ日時 2024-05-04 05:42:24
合計ジャッジ時間 4,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,188 KB
testcase_01 AC 40 ms
54,416 KB
testcase_02 AC 43 ms
54,776 KB
testcase_03 AC 102 ms
96,048 KB
testcase_04 AC 89 ms
92,292 KB
testcase_05 AC 56 ms
67,040 KB
testcase_06 AC 60 ms
72,364 KB
testcase_07 AC 86 ms
88,124 KB
testcase_08 AC 61 ms
77,004 KB
testcase_09 AC 83 ms
86,372 KB
testcase_10 AC 99 ms
94,708 KB
testcase_11 AC 51 ms
66,048 KB
testcase_12 AC 59 ms
75,436 KB
testcase_13 AC 85 ms
88,580 KB
testcase_14 AC 99 ms
95,944 KB
testcase_15 AC 92 ms
92,216 KB
testcase_16 AC 60 ms
70,156 KB
testcase_17 AC 60 ms
74,204 KB
testcase_18 AC 103 ms
97,208 KB
testcase_19 AC 103 ms
97,052 KB
testcase_20 AC 97 ms
97,396 KB
testcase_21 AC 97 ms
97,364 KB
testcase_22 AC 100 ms
97,212 KB
testcase_23 AC 97 ms
97,280 KB
testcase_24 AC 97 ms
97,100 KB
testcase_25 AC 97 ms
97,044 KB
testcase_26 AC 98 ms
97,020 KB
testcase_27 AC 97 ms
97,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
R = list(map(int, input().split()))
G = [[] for i in range(N)]
for i in range(1, N):
    G[i].append((i - 1, 0))
    
for i in range(N-1):
    G[i].append((R[i]-1, 1))
    
Q = deque()
Q.append(0)
inf = 10 ** 18
dist = [inf] * N
dist[0] = 0
while Q:
    u = Q.popleft()
    for v, c in G[u]:
        if dist[v] <= dist[u] + c:
            continue
        dist[v] = dist[u] + c
        if c:
            Q.append(v)
        else:
            Q.appendleft(v)
print(dist[-1])
0