Skip to main content

Iron, Magnet and Wall Codechef November Long challenge 2020 solution with code explanation

 Iron, Magnet and Wall  Codechef November Long challenge 2020 solution with code explanation -

Iron, Magnet and Wall  Codechef November Long challenge 2020 solution with code explanation 
Let's read problem statement,

Chef loves to play with iron (Fe) and magnets (Ma). He took a row of N cells (numbered 1 through N) and placed some objects in some of these cells. You are given a string S with length N describing them; for each valid i, the i-th character of S is one of the following:

  • 'I' if the i-th cell contains a piece of iron
  • 'M' if the i-th cell contains a magnet
  • '_' if the i-th cell is empty
  • ':' if the i-th cell contains a conducting sheet
  • 'X' if the i-th cell is blocked

If there is a magnet in a cell i and iron in a cell j, the attraction power between these cells is Pi,j=K+1|ji|Si,j, where Si,j is the number of cells containing sheets between cells i and j. This magnet can only attract this iron if Pi,j>0 and there are no blocked cells between the cells i and j.

Chef wants to choose some magnets (possibly none) and to each of these magnets, assign a piece of iron which this magnet should attract. Each piece of iron may only be attracted by at most one magnet and only if the attraction power between them is positive and there are no blocked cells between them. Find the maximum number of magnets Chef can choose.

Input

  • The first line of the input contains a single integer T denoting the number of test cases. The description of T test cases follows.
  • The first line of each test case contains two space-separated integers N and K.
  • The second line contains a single string S with length N.

Output

For each test case, print a single line containing one integer ― the maximum number of magnets that can attract iron.

Constraints

  • 1T2,000
  • 1N105
  • 0K105
  • S contains only characters 'I', 'M', '_', ':' and 'X'
  • the sum of N over all test cases does not exceed 5106

Subtasks

Subtask #1 (30 points): there are no sheets, i.e. S does not contain the character ':'

Subtask #2 (70 points): original constraints

Example Input

2
4 5
I::M
9 10
MIM_XII:M

Example Output

1
2

Explanation

Example case 1: The attraction power between the only magnet and the only piece of iron is 5+132=1. Note that it decreases with distance and the number of sheets.

Example case 2: The magnets in cells 1 and 3 can attract the piece of iron in cell 2, since the attraction power is 10 in both cases. They cannot attract iron in cells 6 or 7 because there is a wall between them.

The magnet in cell 9 can attract the pieces of iron in cells 7 and 6; the attraction power is 8 and 7 respectively.

link-https://www.codechef.com/NOV20B/problems/FEMA2

Iron, Magnet and Wall  Codechef November Long challenge 2020 solution with code explanation

Solution-

Read also -https://www.technicalkeeda.in/2020/11/magical-candy-problem-solution-codechef.html

To solve this problem you need to think some logic that .
1-none of iron and magnet can be paired if any wall is situated between them.
2- A iron/magnet can pair only with one magnet/iron.
3- to maximize the final answer you need need to pair a iron with a magnet which is farthest from iron. similarly you have to for magnet.

Actually implementation part is a little bit more tricky/ tough then logic.

Code explanation-
store index of iron, magnet, and wall.
and store count of the metal sheet between 0 to the current index.
and start pairing iron with the farthest magnet and magnet with the farthest iron.
If the wall encounters a clear index of iron magnet and wall. 
And repeat the same process after the wall.

Note- This question can be done by another approach.
Follow this video for another approach.






Must Join Telegram channel for Editorial -




Comments

Popular posts from this blog

codeforces rating system | Codeforces rating Newbie to Legendary Grandmaster

 Codeforces rating system | Codeforces rating Newbie to Legendary Grandmaster- Codeforces is one of the most popular platforms for competitive programmers and  codeforces rating matters a lot  .  Competitive Programming  teaches you to find the easiest solution in the quickest possible way. CP enhances your problem-solving and debugging skills giving you real-time fun. It's brain-sport. As you start solving harder and harder problems in live-contests your analytical and rational thinking intensifies. To have a good codeforces profile makes a good impression on the interviewer. If you have a good  codeforces profile so it is very easy to get a referral for product base company like amazon, google , facebook etc.So in this blog I have explained everything about codeforces rating system. What are different titles on codeforces- based on rating codeforces divide rating into 10 part. Newbie Pupil Specialist Expert Candidate Codemaster Master International Master Grandmaster Internat

Apple Division CSES Problem Set Solution | CSES Problem Set Solution Apple division with code

 Apple Division CSES Problem Set Solution | CSES Problem Set Solution Apple division with code - Apple Division CSES Problem Solution Easy Explanation. Apple division is problem is taken form cses introductory problem set.Let's Read Problem statement first. Problem Statement- Time limit:  1.00 s   Memory limit:  512 MB There are  n n  apples with known weights. Your task is to divide the apples into two groups so that the difference between the weights of the groups is minimal. Input The first input line has an integer  n n : the number of apples. The next line has  n n  integers  p 1 , p 2 , … , p n p 1 , p 2 , … , p n : the weight of each apple. Output Print one integer: the minimum difference between the weights of the groups. Constraints 1 ≤ n ≤ 20 1 ≤ n ≤ 20 1 ≤ p i ≤ 10 9 1 ≤ p i ≤ 10 9 Example Input: 5 3 2 7 4 1 Output: 1 Explanation: Group 1 has weights 2, 3 and 4 (total weight 9), and group 2 has weights 1 and 7 (total weight 8). Join Telegram channel for code discussi

Movie Festival CSES problem set solution

 Movie Festival CSES problem set solution - Problem statement-  Time limit:  1.00 s   Memory limit:  512 MB In a movie festival  n n  movies will be shown. You know the starting and ending time of each movie. What is the maximum number of movies you can watch entirely? Input The first input line has an integer  n n : the number of movies. After this, there are  n n  lines that describe the movies. Each line has two integers  a a  and  b b : the starting and ending times of a movie. Output Print one integer: the maximum number of movies. Constraints 1 ≤ n ≤ 2 ⋅ 10 5 1 ≤ n ≤ 2 ⋅ 10 5 1 ≤ a < b ≤ 10 9 1 ≤ a < b ≤ 10 9 Example Input: 3 3 5 4 9 5 8 Output: 2 Solution - Step -1 take input in a vector as a pair first element is ending time ans second element is starting time Step -2 sort the vector in increasing order because we will watch that movie which is ending first. Step -3 iterate over vector and calculate ans .           follow code below-