Monotonous String Groups πŸŽƒ - Google Top Interview Questions


Problem Statement :


You are given a lowercase alphabet string s. Return the minimum numbers of contiguous substrings in which s must be broken into such that each substring is either non-increasing or non-decreasing.

For example, "acccf" is a non-decreasing string, and "bbba" is a non-increasing string.

Constraints

n ≀ 100,000 where n is the length of s

Example 1

Input

s = "abcdcba"

Output

2

Explanation

We can break s into "abcd" + "cba"

Example 2

Input

s = "zzz"

Output

1

Explanation

We can break s into just "zzz"



Solution :



title-img




                        Solution in C++ :

int solve(string s) {
    int ret = 0;
    for (int i = 0; i < s.size();) {
        ret++;
        int j = i + 1;
        bool noninc = true;
        bool nondec = true;
        while (j < s.size()) {
            if (s[j] > s[j - 1]) noninc = false;
            if (s[j] < s[j - 1]) nondec = false;
            if (!noninc && !nondec) break;
            j++;
        }
        i = j;
    }
    return ret;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int solve(String s) {
        // If empty string, there are no substrings
        if (s.length() < 1) {
            return 0;
        }

        // Counter to keep track of number of substrings
        int count = 1;

        // Number to indicate whether current substring is
        // non-decreasing, non-increasing, or neither decreasing nor
        // increasing (staying the same).
        int current = 0;

        for (int i = 1; i < s.length(); i++) {
            // Find out out whether behavior is decreasing, staying the same
            // or increasing between current character and previous character
            int diff = s.charAt(i) - s.charAt(i - 1);

            // If the current substring's behavior has not been determined yet
            // (can still either be non-decreasing or non-increasing)
            if (current == 0) {
                // Set the current string's behavior to non-increasing
                if (diff < 0) {
                    current = -1;
                    // Set the current string's behavior to non-decreasing
                } else if (diff > 0) {
                    current = 1;
                }

                // Note that if diff is 0, the current string's behavior can be
                // determined at a later time

                // If the current substring's behavior has already been determined
                // (either non-decreasing or non-increasing)
            } else {
                // If the behavior between this index and the previous index does
                // not match the behavior of the current substring, it is time
                // to start a new substring
                if (diff < 0 && current == 1 || diff > 0 && current == -1) {
                    count++;
                    current = 0;
                }
            }
        }

        return count;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, s):
        if not s:
            return 0
        count = 1
        increasing = None
        for i in range(len(s) - 1):
            if increasing is None and s[i] != s[i + 1]:
                increasing = s[i] < s[i + 1]
            elif (increasing and s[i] > s[i + 1]) or (increasing is False and s[i] < s[i + 1]):
                count += 1
                increasing = None
        return count
                    


View More Similar Problems

Queue using Two Stacks

A queue is an abstract data type that maintains the order in which elements were added to it, allowing the oldest elements to be removed from the front and new elements to be added to the rear. This is called a First-In-First-Out (FIFO) data structure because the first element added to the queue (i.e., the one that has been waiting the longest) is always the first one to be removed. A basic que

View Solution β†’

Castle on the Grid

You are given a square grid with some cells open (.) and some blocked (X). Your playing piece can move along any row or column until it reaches the edge of the grid or a blocked cell. Given a grid, a start and a goal, determine the minmum number of moves to get to the goal. Function Description Complete the minimumMoves function in the editor. minimumMoves has the following parameter(s):

View Solution β†’

Down to Zero II

You are given Q queries. Each query consists of a single number N. You can perform any of the 2 operations N on in each move: 1: If we take 2 integers a and b where , N = a * b , then we can change N = max( a, b ) 2: Decrease the value of N by 1. Determine the minimum number of moves required to reduce the value of N to 0. Input Format The first line contains the integer Q.

View Solution β†’

Truck Tour

Suppose there is a circle. There are N petrol pumps on that circle. Petrol pumps are numbered 0 to (N-1) (both inclusive). You have two pieces of information corresponding to each of the petrol pump: (1) the amount of petrol that particular petrol pump will give, and (2) the distance from that petrol pump to the next petrol pump. Initially, you have a tank of infinite capacity carrying no petr

View Solution β†’

Queries with Fixed Length

Consider an -integer sequence, . We perform a query on by using an integer, , to calculate the result of the following expression: In other words, if we let , then you need to calculate . Given and queries, return a list of answers to each query. Example The first query uses all of the subarrays of length : . The maxima of the subarrays are . The minimum of these is . The secon

View Solution β†’

QHEAP1

This question is designed to help you get a better understanding of basic heap operations. You will be given queries of types: " 1 v " - Add an element to the heap. " 2 v " - Delete the element from the heap. "3" - Print the minimum of all the elements in the heap. NOTE: It is guaranteed that the element to be deleted will be there in the heap. Also, at any instant, only distinct element

View Solution β†’