2320: 找终点

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

给定一个正整数数组,设为nums,最大为100个成员,求从第一个成员开始,正好走到数组最后一个成员,所使用的最少步骤数。 要求: 1.第一步必须从第一元素开始,且1<=第一步的步长

Input

由正整数组成的数组,以空格分隔,数组长度小于100,请自行解析数据数量。

Output

正整数,表示最少的步数,如果不存在输出-1

Sample Input Copy

7 5 9 4 2 6 8 3 5 4 3 9

Sample Output Copy

2

Source/Category