Type Here to Get Search Results !

Swayamvar | TCS MockVita 2 2020 | By CodingHumans

5

Swayamvar

Problem Description

A ceremony where a Bride chooses her Groom from an array of eligible bachelors is called Swayamvar. But this is a Swayamvar with difference. An array of Bride-to-be will choose from an array of Groom-to-be.

The arrangement at this Swayamvar is as follows

· Brides-to-be are organized such that the most eligible bachelorette will get first chance to choose her Groom. Only then, the next most eligible bachelorette will get a chance to choose her Groom

· If the initial most eligible bachelorette does not get a Groom of her choice, none of the Brides-to-be have any chance at all to get married. So unless a senior bachelorette is out of the “queue”, the junior bachelorette does not get a chance to select her Groom-to-be

· Inital state of Grooms-to-be is such that most eligible bachelor is at the head of the “queue”. The next most eligible bachelor is next in the queue. So on and so forth.

· Now everything hinges on the choice of the bachelorette. The most eligible bachelorette will now meet the most eligible bachelor.

· If bachelorette selects the bachelor, both, the bachelorette and the bachelor are now Bride and Groom respectively and will no longer be a part of the Swayamvar activity. Now, the next most eligible bachelorette will get a chance to choose her Groom. Her first option is the next most eligible bachelor (relative to initial state)

· If the most eligible bachelorette passes the most eligible bachelor, the most eligible bachelor now moves to the end of the queue. The next most eligible bachelor is now considered by the most eligible bachelorette. Selection or Passing over will have the same consequences as explained earlier.

· If most eligible bachelorette reaches the end of bachelor queue, then the Swayamvar is over. Nobody can get married.

· Given a mix of Selection or Passing over, different pairs will get formed.

The selection criteria is as follows

1. Each person either drinks rum or mojito. Bride will choose groom only if he drinks the same drink as her.

Note : There are equal number of brides and grooms for the swayamvar.

Tyrion as the hand of the king wants to know how many pairs will be left unmatched. Can you help Tyrion?

Constraints

1<= N <= 10^4

Input Format

First line contains one integer N, which denotes the number of brides and grooms taking part in the swayamvar.

Second line contains a string in lowercase, of length N containing initial state of brides-to-be.

Third line contains a string in lowercase, of length N containing initial state of grooms-to-be. Each string contains only lowercase 'r' and 'm' stating person at that index drinks "rum"(for 'r') or mojito(for 'm').

Output

Output a single integer denoting the number of pairs left unmatched.

Timeout

1

Explanation

Example 1

Input

4

rrmm

mrmr

Output

0

Explanation

The bride at first place will only marry groom who drinks rum. So the groom at first place will join the end of the queue. Updated groom's queue is "rmrm".

Now the bride at first place will marry the groom at first place. Updated bride's queue is "rmm" and groom's queue is "mrm".

The process continues and at last there are no pairs left. So answer is 0.

Example 2

Input

4

rmrm

mmmr

Output

2

Explanation

Following the above process 2 pairs will be left unmatched. Remember that bride will not move until she gets a groom of her choice.





Recommended: Please try your approach on your integrated development environment (IDE) first, before moving on to the solution.

Few words from CodingHumans : Don't Just copy paste the solution, try to analyze the problem and solve it without looking by taking the the solution as a hint or a reference . Your understanding of the solution matters.


HAPPY CODING 😁




Solution:
( C++ )

#include <iostream>
using namespace std;

int main()
{
  int n;
  cin>>n;
  char a[n+1],b[n+1];
  cin>>a>>b;
  int c[2];
  c[0]=0;c[1]=0;
  for(int i=0;i<n;i++){
      if(b[i]=='r')
      c[0]++;
      else
      c[1]++;
   
  }
  int i;
  for( i=0;i<n;i++){
      if(a[i]=='r' && c[0]!=0)
      c[0]--;
      else if(a[i]=='m'&&c[1]!=0)
      c[1]--;
      else
      break;
  }
  cout<<(n-i);


    return 0;
}




Solution:
( C++ )

#include<bits/stdc++.h>
using namespace std;

int main() {
    int n; cin >> n;
    string s1, s2; cin >> s1 >> s2;
    int m=0, r=0;
    for(char c:s2) {
        if(c == 'm') m++;
        else r++;
    }
    for(char c:s1) {
        if(c == 'm') {
            if(m) m--;
            else break;
        } else {
            if(r) r--;
            else break;
        }
    }
    cout << m+r;
    return 0;

}


Solution:
( Python )

number_of_brides_and_grooms = int(input())
brides = input()
grooms = input()
i = 0
while i < number_of_brides_and_grooms:
    index = grooms.find(brides[0])
    if index < 0:
        break
    grooms = grooms[index+1:]+grooms[:index]
    brides = brides[1:]
    i += 1
print(len(brides),end="")


Problem created by TCS MockVita 2 2020

If you have any doubts regarding this problem or  need the solution in other programming languages then leave a comment down below . 

Post a Comment

5 Comments
  1. i have a doubt if no.of brides is order of 3 its give runtime error

    ReplyDelete
    Replies
    1. the solutions given above doesn't give the run time error . if the problem is with your code you can show the code here.

      Delete
  2. Does the above code accepted as it is?
    I'm asking this because I got TimeLimitExceeded error when I submittted the same type of code( of same time complexity)

    ReplyDelete
    Replies
    1. Yes the code is executable and does not have TLE. kindly attach your code so that we can look through your code and see the problem

      Delete
  3. Java solution:

    import java.util.*;
    public class Swayamvar {
    public static void main(String [] args) {
    int count=0;
    Scanner sc = new Scanner(System.in);
    String s1 = sc.nextLine();
    String s2 = sc.nextLine();
    List b = new ArrayList<>();
    List g = new ArrayList<>();
    char bride[] = s1.toCharArray();
    for(int i=0;i<bride.length;i++) {
    b.add(bride[i]);
    }
    char groom[] = s2.toCharArray();
    for(int i=0;i<groom.length;i++) {
    g.add(groom[i]);
    }
    int tempc=0;
    while(true) {
    if(b.size()==0 && g.size()==0) {
    break;
    }
    if(tempc==g.size()) {
    break;
    }
    if(b.get(0)==g.get(0)) {
    g.remove(0);
    b.remove(0);
    count++;
    tempc=0;
    }
    else {
    char val = g.get(0);
    g.remove(0);
    g.add(val);
    tempc++;

    }
    }
    System.out.println(g.size());
    }
    }

    ReplyDelete
* Please Don't Spam Here. All the Comments are Reviewed by Admin.

Top Post Ad

Below Post Ad