对象已移动

可在此处找到该文档 Minimum replacements with 0 to sort the array – New Self New Life
New Self New Life
No Result
View All Result
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices
New Self New Life
No Result
View All Result
Home Softwares

Minimum replacements with 0 to sort the array

by admin
3 years ago
in Softwares
Best Coding Practices For Rest API Design
Share on FacebookShare on Twitter


Given an array A[] of N integers, the duty is to search out the minimal variety of operations to type the array in non-decreasing order, by selecting an integer X and changing all of the occurrences of X within the array with 0.

Examples:

Enter: N = 5, A[] = {2, 2, 1, 1, 3}
Output: 1
Rationalization: We select X = 2 and substitute all of the occurrences of two with 0. Now the array turns into {2, 2, 1, 1, 3} -> {0, 0, 1, 1, 3} , which is sorted in growing order.

Enter: N = 4, A[] = {2, 4, 1, 2}
Output: 3

 

Method: The issue will be solved simply with the assistance of a Map. 

Observations:

There are 2 instances that must be thought of :

  • Case 1: Similar factor happens greater than as soon as non-contiguously 
    • Contemplate the array : {1,6,3,4,5,3,2}. 
    • Now, since 3 at index 5 is larger than its subsequent factor, so we are going to make that 0 (in addition to 3 at index 2). 
    • The array turns into {1,6,0,4,5,0,2}. 
    • So, the one strategy to type the array could be to make all the weather earlier than the zeroes equal to 0. i.e. the array turns into {0,0,0,0,0,0,2}.
  • Case 2: Aspect at ith index is larger than the factor at (i+1)th index :
    • Contemplate the array : {1,2,3,5,4}. 
    • Because the factor on the third index is larger than the factor at 4th index, we now have to make the factor at third index equal to zero. 
    • So , the array turns into {1,2,3,0,4}. 
    • Now, the one strategy to type the array could be to make all the weather earlier than the zero equal to 0. i.e. the array turns into {0,0,0,0,4}.

It may be noticed that ultimately Case 2 breaks all the way down to Case 1.

Contemplating the above instances, the issue will be solved following the beneath steps :

  • Declare a hash map and add the frequency of every factor of the array into the map.
  • Iterate by the array from the again, i.e. from i=N-1 to i=0.
  • At every iteration, deal with Instances 1 and a couple of as defined above.
  • If iteration completes, return 0.

Beneath is the implementation of this method:

C++

#embrace <bits/stdc++.h>

utilizing namespace std;

 

int minimumReplacements(int A[], int N)

{

    

    map<int, int> mp;

 

    

    

    for (int i = 0; i < N; i++) {

        mp[A[i]]++;

    }

 

    

    for (int i = N - 1; i >= 0; i--) {

 

        

        

        whereas (i > 0 && A[i] == A[i - 1]) {

            mp[A[i]]--;

            i--;

        }

 

        mp[A[i]]--;

 

        

        

        if (mp[A[i]] == 0) {

            mp.erase(A[i]);

        }

 

        

        if (mp.discover(A[i]) != mp.finish()) {

            return mp.measurement();

        }

 

        

        if (i > 0 && A[i - 1] > A[i]) {

            return mp.measurement();

        }

    }

 

    

    

    return 0;

}

 

int fundamental()

{

    int N = 5;

    int A[] = { 2, 2, 1, 1, 3 };

 

    

    int reply = minimumReplacements(A, N);

    cout << reply;

}

Time Complexity: O(N)
Auxiliary House: O(N) 



Source link

Tags: arrayMinimumreplacementsSort
Previous Post

Adonit’s $45 Stylus Magnetically Charges Off the iPad

Next Post

Dan Edlebeck, Co-Founder of SEI: Introducing Sei Network and Its Best-In-Class On-chain Orderbook

Related Posts

Huawei Cloud rolls out Pangu Models 5.5 to cover more industries
Softwares

Huawei Cloud rolls out Pangu Models 5.5 to cover more industries

by admin
June 24, 2025
Minor update(4) for Vivaldi Android Browser 7.4
Softwares

Minor update(4) for Vivaldi Android Browser 7.4

by admin
June 21, 2025
How AI Medical Coding Software Reduces Errors & Accelerates Billing in 2025
Softwares

How AI Medical Coding Software Reduces Errors & Accelerates Billing in 2025

by admin
June 22, 2025
10+ Best Free Portfolio & Lookbook Templates for InDesign in 2025 — Speckyboy
Softwares

10+ Best Free Portfolio & Lookbook Templates for InDesign in 2025 — Speckyboy

by admin
June 20, 2025
User Guide For CS-Cart Product Search By Barcode
Softwares

User Guide For CS-Cart Product Search By Barcode

by admin
June 18, 2025
Next Post
Dan Edlebeck, Co-Founder of SEI: Introducing Sei Network and Its Best-In-Class On-chain Orderbook

Dan Edlebeck, Co-Founder of SEI: Introducing Sei Network and Its Best-In-Class On-chain Orderbook

New FDA Ruling To Boost Hearing Aid Quality And Affordability

New FDA Ruling To Boost Hearing Aid Quality And Affordability

  • Trending
  • Comments
  • Latest
Pamela Anderson raves about new natural, makeup-free look: ‘It’s freedom’

Pamela Anderson raves about new natural, makeup-free look: ‘It’s freedom’

October 8, 2023
Alec Baldwin indicted again for ‘Rust’ shooting that left cinematographer dead – National

Alec Baldwin indicted again for ‘Rust’ shooting that left cinematographer dead – National

January 21, 2024
I Tried Calocurb For 90 Days. Here’s My Review.

I Tried Calocurb For 90 Days. Here’s My Review.

January 8, 2025
Guide for Bagisto Quick Commerce

Guide for Bagisto Quick Commerce

October 16, 2024
A look into CAMPUS, ShopBack’s new Singapore HQ at Pasir Panjang

A look into CAMPUS, ShopBack’s new Singapore HQ at Pasir Panjang

July 2, 2022
User Manual for Odoo Docx Report Builder

User Manual for Odoo Docx Report Builder

November 30, 2024
8BitDo Retro Mechanical Keyboard C64 Review

8BitDo Retro Mechanical Keyboard C64 Review

March 24, 2025
Bones: All Of Brennan’s Interns, Ranked

Bones: All Of Brennan’s Interns, Ranked

June 15, 2021
Over 140 People ‘Pricked’ With Syringes at Music Festival

Over 140 People ‘Pricked’ With Syringes at Music Festival

June 24, 2025
Samsung Galaxy Watch 8 Classic: Battery, Design, and More

Samsung Galaxy Watch 8 Classic: Battery, Design, and More

June 24, 2025
Shane Gillis Set As Host Of The 2025 ESPYS For ABC & ESPN+

Shane Gillis Set As Host Of The 2025 ESPYS For ABC & ESPN+

June 24, 2025
Cobra Kai star Martin Kove ‘kicked out of fan convention’ after allegedly ‘biting’ co-star Alicia Hannah-Kim

Cobra Kai star Martin Kove ‘kicked out of fan convention’ after allegedly ‘biting’ co-star Alicia Hannah-Kim

June 24, 2025
Liam Neeson Drives a Bus to Escape Himalayan Kidnappers in Trailer For ICE ROAD: VENGEANCE — GeekTyrant

Liam Neeson Drives a Bus to Escape Himalayan Kidnappers in Trailer For ICE ROAD: VENGEANCE — GeekTyrant

June 24, 2025
X Adds More Sports Engagement Options To Maintain Community Engagement

X Adds More Sports Engagement Options To Maintain Community Engagement

June 24, 2025
Maroon 5’s New Album ‘Love Is Like’ Release Date, Tour Dates Announced

Maroon 5’s New Album ‘Love Is Like’ Release Date, Tour Dates Announced

June 23, 2025
Google adds AI features to Chromebook Plus devices

Google adds AI features to Chromebook Plus devices

June 23, 2025
New Self New Life

Your source for entertainment news, celebrities, celebrity news, and Music, Cinema, Digital Lifestyle and Social Media and More !

Categories

  • Celebrity
  • Cinema
  • Devices
  • Digital Lifestyle
  • Entertainment
  • Music
  • Social Media
  • Softwares
  • Uncategorized

Recent Posts

  • Over 140 People ‘Pricked’ With Syringes at Music Festival
  • Samsung Galaxy Watch 8 Classic: Battery, Design, and More
  • Shane Gillis Set As Host Of The 2025 ESPYS For ABC & ESPN+
  • Home
  • Disclaimer
  • DMCA
  • Privacy Policy
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact us

Copyright © 2021 New Self New Life.
New Self New Life is not responsible for the content of external sites. slotsfree  creator solana token

No Result
View All Result
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices

Copyright © 2021 New Self New Life.
New Self New Life is not responsible for the content of external sites.

New Self New Life