Skip to main content

Removing Minimum and Maximum From Array | Leetcode 2091 solution

 You are given a 0-indexed array of distinct integers nums.

There is an element in nums that has the lowest value and an element that has the highest value. We call them the minimum and maximum respectively. Your goal is to remove both these elements from the array.

deletion is defined as either removing an element from the front of the array or removing an element from the back of the array.

Return the minimum number of deletions it would take to remove both the minimum and maximum element from the array.

 

Example 1:

Input: nums = [2,10,7,5,4,1,8,6]
Output: 5
Explanation: 
The minimum element in the array is nums[5], which is 1.
The maximum element in the array is nums[1], which is 10.
We can remove both the minimum and maximum by removing 2 elements from the front and 3 elements from the back.
This results in 2 + 3 = 5 deletions, which is the minimum number possible.

Example 2:

Input: nums = [0,-4,19,1,8,-2,-3,5]
Output: 3
Explanation: 
The minimum element in the array is nums[1], which is -4.
The maximum element in the array is nums[2], which is 19.
We can remove both the minimum and maximum by removing 3 elements from the front.
This results in only 3 deletions, which is the minimum number possible.

Example 3:

Input: nums = [101]
Output: 1
Explanation:  
There is only one element in the array, which makes it both the minimum and maximum element.
We can remove it with 1 deletion.

 

Constraints:

  • 1 <= nums.length <= 105
  • -105 <= nums[i] <= 105
  • The integers in nums are distinct.

solution


class Solution {
public:
    int minimumDeletions(vector<int>& nums) {

        int size = nums.size();
     
        int result =0;
        if(size == 1 )
        {
            return 1;
        }
        if(size ==2)
        {
            return 2;

        }
        int min_index , max_index ;
        int mini = INT_MAX;
        int maxi = INT_MIN;
        for(int i =0; i < size ; i++)
        {
            if(mini > nums[i])
            {
                mini = nums[i];
                min_index = i;
            }
            if(maxi < nums[i])
            {
                maxi = nums[i];
                max_index = i;
            }
        }
     
        int a = max(min_index , max_index)+1;
        int b = size - min(min_index , max_index);
        int c = min(min_index ,max_index) +1 + size -max(min_index , max_index);
        return min({a ,b ,c});
     
    }
};


Comments

Popular posts from this blog

[PDF DOWNLOAD] AKTU Quantum series data structure b.tech 2nd year download

  All AKTU Quantums are available here. Get your hands on AKTU Quantums and boost your grades in AKTU semester exams. You can either search them category wise or can use the search bar or can manually search on this page. Download aktu second year quantum pdf data structures  download  data structures quantum aktu download aktu data structures quantum click here to download  write in comment section if you want quantum of any other subject.

solution : Snape and Ladder | codechef | Problem Code: SNAPE

  Snape and Ladder  Problem Code:  SNAPE Professor Snape has lots of potions. Bottles containing all types of potions are stacked on shelves which cover the entire wall from floor to ceiling. Professor Snape has broken his bones several times while climbing the top shelf for retrieving a potion. He decided to get a ladder for him. But he has no time to visit Diagon Alley. So he instructed Ron Weasley to make a ladder for him. Professor Snape specifically wants a step ladder which looks like an inverted 'V' from side view. Professor just mentioned two things before vanishing- B  - separation between left side (LS) and right side (RS) on the ground LS  - the length of left side What should be the length of  RS ? At one extreme  LS  can be vertical and at other  RS  can be vertical. Ron is angry and confused. Since Harry is busy battling Voldemort, its your duty to help him find the minimum and maximum length of  RS . Input First line contains single integer  T , the number of tes

solution: Count Total Set Bits | interviewbit | Amazon previous year problems

  Problem Description Given a positive integer A , the task is to count the total number of set bits in the binary representation of all the numbers from 1 to A . Return the count modulo 10 9 + 7 . Problem Constraints 1 <= A <= 10 9 Input Format First and only argument is an integer A . Output Format Return an integer denoting the ( Total number of set bits in the binary representation of all the numbers from 1 to A )modulo 10 9 + 7 . Example Input Input 1: A = 3 Input 2: A = 1 Example Output Output 1: 4 Output 2: 1 Example Explanation Explanation 1: DECIMAL BINARY SET BIT COUNT 1 01 1 2 10 1 3 11 2 1 + 1 + 2 = 4 Answer = 4 % 1000000007 = 4 Explanation 2: A = 1 DECIMAL BINARY SET BIT COUNT 1 01 1 Answer = 1 % 1000000007 = 1 solution : int  Solution::solve ( int  A )   {      if ( A  ==   0 )      {          return   0 ;      }      if ( A  == 1    )      {          return   1