LightOJ 1148 - Mad Counting【数学】

本文介绍了一种通过统计调查结果来快速估算特定群体规模的方法。这种方法适用于需要快速获取大致人数的情况,例如估算小镇的总人口。文章提供了一个具体的示例问题,并给出了相应的代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1148 - Mad Counting
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

 

解题思路
将说的数和说的次数同时存储,将每个数除以每个数说的次数向上取整相加的和,可以再输入时就将此数加一。
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
struct nn
{
	int shu1,wei;
}num1[100001];
struct node
{
	int shu;
	int ci;
}num[100001];
int ans;
int find(int x)
{
	int i;
	for(i=0;i<ans;i++)
	{
		if(num[i].shu==x+1)
		{
			num[i].ci++;
			return i;
		}
	}
	if(i==ans)
	{
		num[i].shu=x+1;
		num[i].ci++;
		ans++; 
		return i;
	}
} 
int main()
{
	int t;
	int wc=0;
	scanf("%d",&t);
	while(t--)
	{
		wc++;
		ans=0;
		memset(num,0,sizeof(num));
		int n;
		scanf("%d",&n);
		for(int i=0;i<n;i++)
		{
			scanf("%d",&num1[i].shu1);
			int cnm;
			cnm=find(num1[i].shu1);
			num1[i].wei=cnm;
		}
		int cc=0;
		for(int i=0;i<ans;i++)
		{
			cc+=((num[i].shu+num[i].ci-1)/num[i].shu)*num[i].shu;
		}
		printf("Case %d: %d\n",wc,cc);
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值