#5524: 卡NA90


gcobs016224 (阿嘎嘎嘎)

學校 : 臺北市立成功高級中學
編號 : 13880
來源 : [140.113.151.167]
最後登入時間 :
2018-06-11 13:26:09
b162. NOIP2007 1.统计数字 -- NOIP2007提高組 | From: [203.64.138.60] | 發表日期 : 2011-08-06 10:32

#include<iostream>
using namespace std;
int main()
{
 int a,all[200001];
 while(cin>>a)
 {
  for(int g=0;g<a;g++)
   cin>>all[g];
  sort(all,all+a);
   int count=1;
   for(int g=1;g<a;g++)
   {
   if(all[g]==all[g-1]&&g!=a-1)  
    count++;
   else
   {
    if(g==a-1)
    {
     if(all[g]==all[g-1])
      cout<<all[g]<<" "<<count+1<<endl; 
     else 
     {
      cout<<all[g-1]<<" "<<count<<endl;
      cout<<all[g]<<" "<<1<<endl; 
     }
     
    }
    else
    {
     cout<<all[g-1]<<" "<<count<<endl;
     count=1; 
    }
   }
  }
 }
return 0;
}
不知道哪裡錯 
ZeroJudge Forum