Delete
Time Limit: 2000/1000 MS (
Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 207 Accepted Submission(s): 140
Problem Description
WLD likes playing with numbers. One day he is playing with N integers. He wants to delete K integers from them. He likes diversity, so he wants to keep the kinds of different integers as many as possible after the deletion. But he is busy pushing, can you help him?
Input
There are Multiple Cases. (At MOST 100)
For each case:
The first line contains one integer N(0
The second line contains N integers a1,a2,...,aN(1≤ai≤N), denoting the integers WLD plays with.
The third line contains one integer K(0≤K
Output
For each case:
Print one integer. It denotes the maximum of different numbers remain after the deletion.
Sample Input
4
1 3 1 2
1
Sample Output
3
Hint
if WLD deletes a 3, the numbers remain is [1,1,2],he'll get 2 different numbers.
if WLD deletes a 2, the numbers remain is [1,1,3],he'll get 2 different numbers.
if WLD deletes a 1, the numbers remain is [1,2,3],he'll get 3 different numbers.
Source
BestCoder Round #39 ($)
1001 Delete 用一个cnt数组记下每个数在a序列中出现了几次 在删数的时候贪心,尽可能删那些出现次数>1的数 这样就可以使最后有最多不同的数
?
#include
#include
#include
#include
#include
#include
?
?
|