Jumping on the Clouds

Jumping on the Clouds

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 1 or 2. She must avoid the thunderheads. Determine the minimum number of jumps it will take Emma to jump from her starting postion to the last cloud. It is always possible to win the game.

For each game, Emma will get an array of clouds numbered 0 if they are safe or 1 if they must be avoided. For example, c = [0, 1, 0, 0, 0, 1, 0] indexed from 0 … 6. The number on each cloud is its index in the list so she must avoid the clouds at indexes 1 and 5. She could follow the following two paths: 0 -> 2 -> 4 -> 6 or 0 -> 2 -> 3 -> 4 -> 6. The first path takes 3 jumps while the second takes 4.


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 n, the total number of clouds. The second line contains n space-separated binary integers describing clouds c[i] where .


Constraints


Output Format

Print the minimum number of jumps needed to win the game.


Sample Input 0

1
2
7
0 0 1 0 0 1 0

Sample Output 0

1
4

Explanation 0:

Emma must avoid c[2] and c[5]. She can win the game with a minimum of 4 jumps:


Sample Input 1

1
2
6
0 0 0 0 1 0

Sample Output 1

1
3

Explanation 1:

The only thundercloud to avoid is c[4]. Emma can win the game in 3 jumps:



Solution

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function jumpingOnClouds(c) {
let prevItem = -1;
let isSecond = false;

return c.reduce((target, item) => {
target = item === 0
? (prevItem === 0
? (isSecond ? (isSecond = false, target) : (isSecond = true, target + 1))
: target)
: (prevItem === 0
? (isSecond = false, target + 1)
: target);

prevItem = item;
return target;
}, 0)
}

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×