记录编号 |
162183 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2007]统计数字 |
最终得分 |
100 |
用户昵称 |
晖灰熊 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.247 s |
提交时间 |
2015-05-14 20:31:33 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <cctype>
#include <map>
#include <list>
#include <queue>
#include <stack>
#include <vector>
using namespace std;
ifstream fin("pcount.in");
ofstream fout("pcount.out");
std::map<long long, int > num;
int main () {
std::ios::sync_with_stdio(false);
int n;
fin >> n;
int x;
while ( n-- ) {
fin >> x;
++num[x];
}
for ( std::map<long long, int >::iterator ans = num.begin(); ans != num.end(); ++ans )
fout << ans -> first << " " << ans -> second << endl;
return 0;
}
/*
Sample Input
8
2
4
2
4
5
100
2
100
Sample Output
2 3
4 2
5 1
100 2
Hint
40%的数据满足:1<=n<=1000
80%的数据满足:1<=n<=50000
100%的数据满足:1<=n<=200000,每个数均不超过1 500 000 000(1.5*10^9)
*/