일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 코로나19
- 프로그래머스 파이썬
- hackerrank
- Kaggle
- programmers
- SW Expert Academy
- 파이썬
- 자연어처리
- leetcode
- 데이콘
- 편스토랑
- AI 경진대회
- 맥북
- 우분투
- ChatGPT
- Git
- 백준
- Docker
- 더현대서울 맛집
- gs25
- 편스토랑 우승상품
- Baekjoon
- dacon
- ubuntu
- 프로그래머스
- 캐치카페
- Real or Not? NLP with Disaster Tweets
- github
- PYTHON
- 금융문자분석경진대회
- Today
- Total
솜씨좋은장씨
[HackerRank] Counting Valleys (Python) 본문
Gary is an avid hiker. He tracks his hikes meticulously, paying close attention to small details like topography. During his last hike he took exactly n steps. For every step he took, he noted if it was an uphill, U , or a downhill, D step. Gary's hikes start and end at sea level and each step up or down represents a 1 unit change in altitude. We define the following terms:
- A mountain is a sequence of consecutive steps above sea level, starting with a step up from sea level and ending with a step down to sea level.
- A valley is a sequence of consecutive steps below sea level, starting with a step down from sea level and ending with a step up to sea level.
Given Gary's sequence of up and down steps during his last hike, find and print the number of valleys he walked through.
For example, if Gary's path is s = [DDUUUUDD], he first enters a valley units deep. Then he climbs out an up onto a mountain 2 units high. Finally, he returns to sea level and ends his hike.
Function Description
Complete the countingValleys function in the editor below. It must return an integer that denotes the number of valleys Gary traversed.
countingValleys has the following parameter(s):
- n: the number of steps Gary takes
- s: a string describing his path
Input Format
The first line contains an integer n, the number of steps in Gary's hike.
The second line contains a single string s, of n characters that describe his path.
Constraints
- 2 <= n <= 10^6
- s[ i ] {U D}
Output Format
Print a single integer that denotes the number of valleys Gary walked through during his hike.
Sample Input
8
UDDDUDUU
Sample Output
1
Explanation
If we represent _ as sea level, a step up as /, and a step down as \, Gary's hike can be drawn as:
_/\ _
\ /
\/\/
He enters and leaves one valley.
Solution
#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the countingValleys function below.
def countingValleys(n, s):
valley_num = 0
level = 0
for i in range(n):
if s[i] == 'U':
level = level + 1
else:
if level == 0:
valley_num = valley_num + 1
level = level - 1
return valley_num
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] Jumping on the Clouds (Python) (0) | 2020.03.09 |
---|---|
[HackerRank] Repeated String (Python) (0) | 2020.03.08 |
[HackerRank] Sock Merchant (Python) (0) | 2020.03.06 |
[leetCode] 414. Third Maximum Number (Python) (0) | 2020.03.05 |
[leetCode] 21. Merge Two Sorted Lists (Python) (0) | 2020.03.04 |