Skip to content

Latest commit

 

History

History

Minimum number of jumps

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Minimum Number of Jumps

Given an array of integers where each element represents the max number of steps that can be made forward from that element. Write a function to return the minimum number of jumps to reach the end of the array (starting from the first element). If an element is 0, then cannot move through that element.

Input
The first line contains an integer T, depicting total number of test cases.
Then following T lines contains a number n denoting the size of the array. Next line contains the sequence of integers a1,?a2,?...,?an.

Output
Each seperate line showing the minimum number of jumps. If answer is not possible print -1.

Constraints
1 = T = 40
1 = N = 100
0<=a[N]<=100

Example Input: 1 11 1 3 5 8 9 2 6 7 6 8 9

Output 3