TIL/Algorithm

[Algorithm] Hackerrank - Jumping on the Clouds

재융 2019. 8. 11. 23:20
반응형

알고리즘(코딩 시험이 걱정인건 함정)이 너무 약해서... 공부좀 해야지...

 

문제

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 postion 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

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:

코드:

#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the jumpingOnClouds function below.
def jumpingOnClouds(c):
    step = 0
    index = 0
    top = len(c)
    while(True):
        if index + 2 >= top -1:
            step += 1
            break
        elif c[index + 2] == 0:
            step += 1
            index += 2
        elif c[index + 1] == 0:
            step += 1
            index += 1
    return step
if __name__ == '__main__':
    fptr = open(os.environ['OUTPUT_PATH'], 'w')
    n = int(input())
    c = list(map(int, input().rstrip().split()))
    result = jumpingOnClouds(c)
    fptr.write(str(result) + '\n')
    fptr.close()
반응형