CF1730A.Planets
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
One day, Vogons wanted to build a new hyperspace highway through a distant system with n planets. The i -th planet is on the orbit ai , there could be multiple planets on the same orbit. It's a pity that all the planets are on the way and need to be destructed.
Vogons have two machines to do that.
- The first machine in one operation can destroy any planet at cost of 1 Triganic Pu.
- The second machine in one operation can destroy all planets on a single orbit in this system at the cost of c Triganic Pus.
Vogons can use each machine as many times as they want.
Vogons are very greedy, so they want to destroy all planets with minimum amount of money spent. Can you help them to know the minimum cost of this project?
输入格式
The first line contains a single integer t ( 1≤t≤100 ) — the number of test cases. Then the test cases follow.
Each test case consists of two lines.
The first line contains two integers n and c ( 1≤n,c≤100 ) — the number of planets and the cost of the second machine usage.
The second line contains n integers a1,a2,…,an ( 1≤ai≤100 ), where ai is the orbit of the i -th planet.
输出格式
For each test case print a single integer — the minimum cost of destroying all planets.
输入输出样例
输入#1
4 10 1 2 1 4 5 2 4 5 5 1 2 5 2 3 2 1 2 2 2 2 1 1 2 2 1 2
输出#1
4 4 2 2
输入#2
1 1 100 1
输出#2
1
说明/提示
In the first test case, the cost of using both machines is the same, so you can always use the second one and destroy all planets in orbit 1 , all planets in orbit 2 , all planets in orbit 4 , all planets in orbit 5 .
In the second test case, it is advantageous to use the second machine for 2 Triganic Pus to destroy all the planets in orbit 2 , then destroy the remaining two planets using the first machine.
In the third test case, you can use the first machine twice or the second machine once.
In the fourth test case, it is advantageous to use the first machine twice.