結果

問題 No.1868 Teleporting Cyanmond
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-26 18:33:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 414 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 665,108 KB
最終ジャッジ日時 2024-04-23 10:35:36
合計ジャッジ時間 4,443 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,384 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 MLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
r=list(map(int,input().split()))
d=[-1]*(n+1)
g=[[] for _ in range(n+1)]
for i in range(n-1):
    for j in range(i+2,r[i]+1):
        g[i+1].append(j)
from collections import deque
q=deque()
q.append(1)
d[1]=0
while q:
    now=q.popleft()
    for to in g[now]:
        if to==n:
            print(d[now]+1)
            exit()
        if d[to]==-1:
            d[to]=d[now]+1
            q.append(to)
0