結果
問題 | No.1868 Teleporting Cyanmond |
ユーザー | DrDrpilot |
提出日時 | 2022-03-26 18:33:34 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 940 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 852,392 KB |
最終ジャッジ日時 | 2024-10-15 10:30:01 |
合計ジャッジ時間 | 3,698 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
53,760 KB |
testcase_01 | AC | 41 ms
53,760 KB |
testcase_02 | AC | 42 ms
53,504 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 | -- | - |
ソースコード
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)