結果

問題 No.1868 Teleporting Cyanmond
ユーザー rlangevinrlangevin
提出日時 2022-12-30 16:27:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 97,560 KB
最終ジャッジ日時 2024-11-25 13:16:44
合計ジャッジ時間 4,486 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,296 KB
testcase_01 AC 41 ms
55,456 KB
testcase_02 AC 41 ms
55,448 KB
testcase_03 AC 109 ms
96,168 KB
testcase_04 AC 90 ms
92,308 KB
testcase_05 AC 55 ms
67,340 KB
testcase_06 AC 62 ms
72,248 KB
testcase_07 AC 88 ms
88,016 KB
testcase_08 AC 65 ms
76,492 KB
testcase_09 AC 87 ms
86,444 KB
testcase_10 AC 116 ms
94,616 KB
testcase_11 AC 55 ms
64,712 KB
testcase_12 AC 68 ms
75,468 KB
testcase_13 AC 89 ms
88,608 KB
testcase_14 AC 106 ms
95,976 KB
testcase_15 AC 97 ms
92,264 KB
testcase_16 AC 59 ms
70,504 KB
testcase_17 AC 63 ms
74,268 KB
testcase_18 AC 107 ms
97,556 KB
testcase_19 AC 107 ms
97,172 KB
testcase_20 AC 107 ms
97,172 KB
testcase_21 AC 108 ms
97,560 KB
testcase_22 AC 108 ms
97,448 KB
testcase_23 AC 106 ms
97,332 KB
testcase_24 AC 106 ms
97,476 KB
testcase_25 AC 107 ms
97,292 KB
testcase_26 AC 106 ms
97,396 KB
testcase_27 AC 106 ms
97,412 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