zoukankan      html  css  js  c++  java
  • light oj 1148

    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

     题意:现在要求一个村庄的总人数,向n个人询问在他们的村庄有多少人和他自己喜欢同一个球队根据数据估计村庄的最少人数

    题解:输入数据对数据从小到大排序,如果有连续相同的数a则将这些连续相同的看做是喜欢的同一个球队的人,(相同的个数最多是a+1  如果超过这个则按另一支队算)

    #include<stdio.h>
    #include<string.h>
    #include<algorithm>
    #define MAX 1000
    #define MAXM 1001000
    #define INF 0x7fffff
    #define LL long long 
    using namespace std;
    int s[MAXM];
    int main()
    {
    	int n,m,j,i,t,k;
    	int sum;
    	//LL sum;
    	scanf("%d",&t);
    	k=1;
    	while(t--)
    	{
    		sum=0;
    		int ans;
    		scanf("%d",&n);
    		for(i=0;i<n;i++)
    		    scanf("%d",&s[i]);
    		sort(s,s+n);
    		for(i=0;i<n;i++)
    		{	
    		    int num=0;	    
    			ans=s[i];
    			num=s[i];
    			while(s[i+1]==ans&&num)
    			{
    				i=i+1;
    				num--;
    			}
    			sum=sum+ans+1;
    		}
    		printf("Case %d: ",k++);
    		printf("%d
    ",sum);
    	}
    	return 0;
    }
    #include<stdio.h>
    #include<string.h>
    #include<algorithm>
    #define MAX 1000
    #define MAXM 1001000
    #define INF 0x7fffff
    #define LL long long 
    using namespace std;
    int s[MAXM];
    int main()
    {
    	int n,m,j,i,t,k;
    	int sum;
    	//LL sum;
    	scanf("%d",&t);
    	k=1;
    	while(t--)
    	{
    		sum=0;
    		int ans;
    		scanf("%d",&n);
    		for(i=0;i<n;i++)
    		    scanf("%d",&s[i]);
    		sort(s,s+n);
    		for(i=0;i<n;i++)
    		{	
    		    int num=0;	    
    			ans=s[i];
    			num=s[i];
    			while(s[i+1]==ans&&num)
    			{
    				i=i+1;
    				num--;
    			}
    			sum=sum+ans+1;
    		}
    		printf("Case %d: ",k++);
    		printf("%d
    ",sum);
    	}
    	return 0;
    }
    

      

  • 相关阅读:
    Centos7如何安装开源办公软件Libreoffice
    vi/vim输入中文乱码,无法输入中文解决方法
    NFS+Rsync增量备份方案
    完全备份,增量备份,差异备份及恢复区别
    Centos7安装Windows程序,例如QQ,微信,notepad++等exe程序
    Centos7升级内核后,导致打开VMware提示需要安装vmmon和vmnet模块
    SSH安全加固
    PHP使用mail函数发送邮件
    Centos7使用mail命令发送邮件
    Python部署配置Django架构教程
  • 原文地址:https://www.cnblogs.com/tonghao/p/4909783.html
Copyright © 2011-2022 走看看