Skip to content

Instantly share code, notes, and snippets.

@ankit92ios
Created March 30, 2019 10:23
Show Gist options
  • Save ankit92ios/3624e3662f1c89027dada5a96f4e014f to your computer and use it in GitHub Desktop.
Save ankit92ios/3624e3662f1c89027dada5a96f4e014f to your computer and use it in GitHub Desktop.
Counting Valleys
This is my solution for hackerrank's Counting Valleys problem in Swift Language.
Problem :
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 steps. For every step he took, he noted if it was an uphill, , or a downhill, step. Gary's hikes start and end at sea level and each step up or down represents a 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 , he first enters a valley units deep. Then he climbs out an up onto a mountain 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 , the number of steps in Gary's hike.
The second line contains a single string , of characters that describe his path.
Constraints
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.
My Solution in Swift Language:
import UIKit
import Foundation
func countingValleys(n: Int, s: String) -> Int {
var valley = 0
var countU = 0
var reachGround = true
for step in s{
if(step == "U"){
countU = countU + 1
}else{
countU = countU - 1
}
if(countU < 0 && reachGround){
valley = valley+1
reachGround = false
}
if(countU == 0){
reachGround = true
}
}
return valley
}
countingValleys(n: 8, s: "UDDDUDUU") //Expected: 1
countingValleys(n: 12, s: "DDUUDDUDUUUD") //Expected : 2
@HuyDragun
Copy link

very clear algorithm, bravo

@eugercek
Copy link

eugercek commented Jan 21, 2021

I think the most optimized way is

int countingValleys(int steps, string path) {
  int altitude = 0;
  int count = 0;
  for (const auto &i : path) {
    if (i == 'U') {
      if (altitude == -1)
        count++;
      altitude++;
    } else
      altitude--;
  }
  return count;
}

It has minimum if in while.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment