hdoj 1148 - Mad Counting 【水题(模拟)】【周赛】

来源:互联网 发布:javabean和js的区别 编辑:程序博客网 时间:2024/05/29 17:44
1148 - Mad Counting
PDF (English)StatisticsForum
Time Limit: 0.5 second(s)Memory Limit: 32 MB

Mob was hijacked by the mayor of the Town "TruthTown". Mayor wants Mob to count the total population of the town. Now the naive approach to this problem will be counting people one by one. But as we all know Mob is a bit lazy, so he is finding some other approach so that the time will be minimized. Suddenly he found a poll result of that town where N people were asked "How many people in this town other than yourself support the same team as you in the FIFA world CUP 2010?" Now Mob wants to know if he can find the minimum possible population of the town from this statistics. Note that no people were asked the question more than once.

Input

Input starts with an integer T (≤ 100), denoting the number of test cases.

Each case starts with an integer N (1 ≤ N ≤ 50). The next line will contain N integers denoting the replies (0 to 106) of the people.

Output

For each case, print the case number and the minimum possible population of the town.

Sample Input

Output for Sample Input

2

4

1 1 2 2

1

0

Case 1: 5

Case 2: 1

 


PROBLEM SETTER: MUHAMMAD RIFAYAT SAMEE
SPECIAL THANKS: JANE ALAM JAN

思路:

             首先将a[i]++,求得的是那个人所在的队的人数,然后sort排序,然后将a[i]个a[i]加到sum上,一直这样查找,到i==n为止!
代码:

#include <stdio.h>#include <string.h>#include <algorithm>using namespace std;int n;int a[55];int main(){int T,N;scanf("%d",&T);N=T;while(T--){scanf("%d",&n);for(int i=1;i<=n;i++){scanf("%d",&a[i]);a[i]++;}sort(a+1,a+n+1);int sum=a[1],t=1;for(int i=2;i<=n;i++){if(a[i]==a[i-1]&&t<a[i]){t++;}else{sum+=a[i];t=1;}}printf("Case %d: ",N-T);printf("%d\n",sum);}return 0;}


0 0
原创粉丝点击