結果

問題 No.1868 Teleporting Cyanmond
ユーザー rlangevinrlangevin
提出日時 2022-12-30 15:21:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 509 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 97,912 KB
最終ジャッジ日時 2024-11-25 11:57:11
合計ジャッジ時間 3,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,108 KB
testcase_01 AC 38 ms
54,144 KB
testcase_02 AC 39 ms
54,864 KB
testcase_03 AC 97 ms
95,936 KB
testcase_04 AC 90 ms
92,180 KB
testcase_05 AC 52 ms
66,436 KB
testcase_06 AC 55 ms
72,820 KB
testcase_07 AC 79 ms
88,124 KB
testcase_08 AC 63 ms
77,160 KB
testcase_09 AC 77 ms
86,472 KB
testcase_10 AC 99 ms
94,824 KB
testcase_11 AC 47 ms
64,300 KB
testcase_12 AC 59 ms
75,452 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

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] != inf:
            continue
        dist[v] = dist[u] + c
        if c:
            Q.append(v)
        else:
            Q.appendleft(v)
print(dist[-1])
0