Counting Valleys - HackerRank.
NOTE: If you are copying my code then its a advise to you to copy it after downloading it to avoid any kind of compilation error its link is available at the bottom of source code.
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.
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.
SOURCE CODE
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;
public class Solution {
// Complete the countingValleys function below.
static int countingValleys(int n, String s) {
int level=0,valley=0;
for(int i=0;i<s.length();i++)
{
char ch=s.charAt(i);
if(ch=='U')
level++;
else if(ch=='D')
level--;
if(level==0 && ch=='U')
valley++;
}
return valley;
}
private static final Scanner scanner = new Scanner(System.in);
public static void main(String[] args) throws IOException {
BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH")));
int n = scanner.nextInt();
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
String s = scanner.nextLine();
int result = countingValleys(n, s);
bufferedWriter.write(String.valueOf(result));
bufferedWriter.newLine();
bufferedWriter.close();
scanner.close();
}
}
Click here to Download
If you have any question then leave a comment below I will do my best to answer that question.
// Complete the countingValleys function below.
ReplyDeletestatic int countingValleys(int n, String s) {
int level = 0;
int valleys = 0;
boolean belowSea = false;
if (n>=2 && n<=1000000){
//System.out.println((int)Math.pow(10,6));
if(n==s.length()){
for(int i = 0; i < n; i++)
{
char slope = s.charAt(i);
if(slope == 'U' || slope =='D'){
if(slope == 'U')//Uphill
{ level++; }
else//Downhill
level--;
//Handle transitions
if(!belowSea && level < 0)
{
valleys++;
belowSea = true;
} else
if(level == 0 && slope =='U'){//We are back above sea level
belowSea = false;
//valleys++;
}
}
}
}
}
return valleys;
}
Thanks for giving this wonderful solution, keep visiting us
ReplyDelete