結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,700 KB
testcase_01 AC 39 ms
55,120 KB
testcase_02 AC 37 ms
54,132 KB
testcase_03 AC 95 ms
96,312 KB
testcase_04 AC 82 ms
92,684 KB
testcase_05 AC 50 ms
66,556 KB
testcase_06 AC 54 ms
71,740 KB
testcase_07 AC 85 ms
88,160 KB
testcase_08 AC 62 ms
76,104 KB
testcase_09 AC 74 ms
87,012 KB
testcase_10 AC 97 ms
94,640 KB
testcase_11 AC 49 ms
65,408 KB
testcase_12 AC 58 ms
75,032 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