Hackerrank - Jumping on the Clouds Solution
Emma is playing a new mobile game that starts with consecutively numbered clouds. Some of the clouds are thunderheads and others are cumulus. She can jump on any cumulus cloud having a number that is equal to the number of the current cloud plus or . She must avoid the thunderheads. Determine the minimum number of jumps it will take Emma to jump from her starting position to the last cloud. It is always possible to win the game.
For each game, Emma will get an array of clouds numbered if they are safe or if they must be avoided. For example, indexed from . The number on each cloud is its index in the list so she must avoid the clouds at indexes and . She could follow the following two paths: or . The first path takes jumps while the second takes .
Function Description
Complete the jumpingOnClouds function in the editor below. It should return the minimum number of jumps required, as an integer.
jumpingOnClouds has the following parameter(s):
- c: an array of binary integers
Input Format
The first line contains an integer , the total number of clouds. The second line contains space-separated binary integers describing clouds where .
Constraints
Output Format
Print the minimum number of jumps needed to win the game.
Sample Input 0
7
0 0 1 0 0 1 0
Sample Output 0
4
Explanation 0:
Emma must avoid and . She can win the game with a minimum of jumps:

Sample Input 1
6
0 0 0 0 1 0
Sample Output 1
3
Explanation 1:
The only thundercloud to avoid is . Emma can win the game in jumps:

Solution in Python
def jumpingOnClouds(c):
current_position = 0
number_of_jumps = 0
last_cloud_postion = len(c)-1
last_second_postion = len(c)-2
while current_position<last_second_postion:
#Checking if the cloud next to the next cloud is thunderstorm
if c[current_position+2] == 0:
current_position += 2
else:
current_position += 1
number_of_jumps += 1
#Checking if we are in the last cloud or the last second cloud
if current_position != last_cloud_postion:
number_of_jumps += 1
return number_of_jumps
input()
c = list(map(int,input().split()))
print(jumpingOnClouds(c))
In short
def jumpingOnClouds(c):
x,y = 0,0
while x<len(c)-2:
x = x+1 if c[x+2] else x+2
y+=1
if x<len(c)-1:
y+=1
return y
input()
c = list(map(int,input().split()))
print(jumpingOnClouds(c))