您的位置:首页 > 其它

lightoj1148 - Mad Counting

2015-10-24 21:47 351 查看
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
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
using namespace std;
long long num[55];
bool cmp(long long a,long long b){
return a<b;
}
int main()
{
int t,i,j,k=1,n;
scanf("%d",&t);
while(t--){
scanf("%d",&n);
long long a;
for(i=0;i<n;++i){
scanf("%lld",&num[i]);
}
sort(num,num+n,cmp);
long long sum=0;
int d=1;num
=-1;
for(i=1;i<=n;++i){
if(num[i]!=num[i-1]){
if(d==num[i-1]+1)sum+=d;
else if(d>num[i-1]+1){
sum+=(d/(num[i-1]+1))*(num[i-1]+1);
if((d/(num[i-1]+1))*(num[i-1]+1)!=d)
sum+=num[i-1]+1;
}
else sum+=num[i-1]+1;
d=0;
}
d++;
}
printf("Case %d: %lld\n",k++,sum);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  lightoj1148 - Mad Co