Sicily-统计数字

总体不难,但是用cin和cout会超时。

 1 #include<iostream>
 2 #include<string>
 3 #include<cstring> 
 4 #include<algorithm>
 5 #include<cstdio>
 6 using namespace std;
 7 int main() {
 8     int n;
 9     bool flag = true;  
10     while(cin >> n) {
11         if(flag)  
12             flag = false;  
13         else  
14             printf("\n"); 
15         int a[200000] = {0};
16         for (int i = 0; i < n; i++) {
17             //cin >> a[i];
18             scanf("%d", &a[i]);
19         }
20         sort(a, a+n);
21         int count= 1;
22         for (int i = 0; i < n; i+=count) {
23             count = 1;
24             for (int j = i+1; j < n; j++) {
25                 if (a[i] == a[j]) {
26                     count++;
27                 } else {
28                     break;
29                 }
30             }
31             //cout << a[i] << " " << count << endl;
32             printf("%d %d\n", a[i], count);
33         }
34     } 
35      
36     return 0;
37 }

 

转载于:https://www.cnblogs.com/SYSU-Bango/p/6307188.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值