GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Wednesday 12 October 2022

[Solution] Card Removal CodeChef Solution | Solution CodeChef



Problem

You have N cards placed in front of you on the table. The i^{th} card has the number A_i written on it.

In one move, you can remove any one card from the remaining cards on the table.

Find the minimum number of moves required so that all the cards remaining on the table have the same number written on them.

Input Format

  • The first line contains a single integer T — the number of test cases. Then the test cases follow.
  • The first line of each test case contains an integer N — the number of cards on the table.
  • The second line of each test case contains N space-separated integers A_1, A_2, \dots, A_N where A_i is the number written on the i^{th} card.

Output Format

For each test case, output the minimum number of moves required so that all the cards remaining on the table have the same number written on them.

Explanation:

Test case 1: The minimum number of moves required such that all remaining cards have same values is 3:

  • Move 1: Remove a card with number 1. Remaining cards are [1, 2, 2, 3].
  • Move 2: Remove a card with number 1. Remaining cards are [2, 2, 3].
  • Move 3: Remove a card with number 3. Remaining cards are [2, 2].
Solution Click Below:-  👉CLICK HERE👈
👇👇👇👇👇

Test case 2: All cards have the same number initially. Thus, no moves are required.

Test case 3: The minimum number of moves required such that all remaining cards have same values is 5:

  • Move 1: Remove a card with number 5. Remaining cards are [6, 7, 8, 9, 10].
  • Move 2: Remove a card with number 6. Remaining cards are [7, 8, 9, 10].
  • Move 3: Remove a card with number 7. Remaining cards are [8, 9, 10].
  • Move 4: Remove a card with number 8. Remaining cards are [9, 10].
  • Move 5: Remove a card with number 9. Remaining cards are [10].

No comments:

Post a Comment