hdu2192 MagicBuilding

来源:互联网 发布:rx1r2 知乎 编辑:程序博客网 时间:2024/06/01 08:07

MagicBuilding

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1213    Accepted Submission(s): 548


Problem Description
As the increase of population, the living space for people is becoming smaller and smaller. In MagicStar the problem is much worse. Dr. Mathematica is trying to save land by clustering buildings and then we call the set of buildings MagicBuilding. Now we can treat the buildings as a square of size d, and the height doesn't matter. Buildings of d1,d2,d3....dn can be clustered into one MagicBuilding if they satisfy di != dj(i != j). 
Given a series of buildings size , you need to calculate the minimal numbers of MagicBuildings that can be made. Note that one building can also be considered as a MagicBuilding.
Suppose there are five buildings : 1, 2, 2, 3, 3. We make three MagicBuildings (1,3), (2,3), (2) .And we can also make two MagicBuilding :(1,2,3), (2,3). There is at least two MagicBuildings obviously.
 

Input
The first line of the input is a single number t, indicating the number of test cases.
Each test case starts by n (1≤n≤10^4) in a line indicating the number of buildings. Next n positive numbers (less than 2^31) will be the size of the buildings.
 

Output
For each test case , output a number perline, meaning the minimal number of the MagicBuilding that can be made.
 

Sample Input
212 51 2 2 3 3
 

Sample Output
12

相同的数不可能在一起,所以直接求那个数的次数出现最多,输出次数就OK

#include<stdio.h>#include <iostream>using namespace std;int main(){    int n;    cin>>n;    int N;    int a[10001];    int f1,f2;    while (n--)    {        f1=f2=0;        cin>>N;        for (int i=0; i<N;i++)        {            cin>>a[i];        }        sort(a, a+N);        for (int i=0; i<N; i++)        {            if(i==0)            {                f1++;                continue;            }            if(a[i]==a[i-1])            {                f1++;            }            else            {                f2=f1>f2?f1:f2;                f1=1;            }        }        f2=f1>f2?f1:f2;        cout<<f2<<endl;    }    return 0;}

(2)直接模拟
#include<stdio.h>#include <iostream>using namespace std;struct build{    int num;    bool flag;};int cmp(const build &b1,const build &b2){    return b1.num<b2.num;}int main(){    int n;    cin>>n;    int N;    int count;    int ans;    build b[10002];    b[0].num=-1;    b[0].flag=false;    while (n--)    {       count=0;        ans=0;        cin>>N;       for (int i=1; i<=N;i++)       {           cin>>b[i].num;           b[i].flag=true;       }        sort(b+1, b+N+1,cmp);        while (count<N)        {            int pre=-1;            for (int i=1; i<=N; i++)            {                if(b[i].flag && b[i].num!=pre)                {                    b[i].flag=false;                    pre=b[i].num;                    count++;                }            }            ans++;        }        cout<<ans<<endl;    }    return 0;}



0 0
原创粉丝点击