首页 > 其他分享 >CCF-CSP认证资格考试题解系列——第4次第2题数字排序

CCF-CSP认证资格考试题解系列——第4次第2题数字排序

时间:2024-10-06 17:47:42浏览次数:17  
标签:cnt struct re 资格考试 题解 cin int num CCF

#include<iostream>
#include<algorithm>
using namespace std;
struct re{
	int value;//数值 
	int num;//次数 
}re[1010];
bool cmp(struct re a,struct re b){
	if(a.num==b.num) return a.value<b.value;//次数相同是小的优先
	return a.num>b.num;//次数不相同是次数优先 
}
int cnt[1010];
int main(){
	int n;
	cin>>n;
	for(int i=0;i<n;i++){
		int x;
		scanf("%d",&x);
		cnt[x]++;//x这个数 出现了几次 
	}
	int m=0; //做多少个记录结构体 
	for(int i=0;i<1010;i++){
		if(cnt[i]){//有这个数 a 不会重复 但是如果前面用a[i]就会重复 
			re[m++]={i,cnt[i]};//一开始是re[0] 最后假如是m到10 其实是0-9 正好是10个 
		}
	} 
	sort(re,re+m,cmp);
	for(int i=0;i<m;i++){
		cout<<re[i].value<<' '<<re[i].num<<endl;
	} 
	return 0;
}
/*
#include<bits/stdc++.h>
using namespace std;

int cnt[1117];

bool cmp(int a, int b)
{
    return (cnt[a] > cnt[b]) ? true : (cnt[a] == cnt[b]) ? (a < b) : false;
}

int main()
{
    int n;
    cin >> n;
    while((cin >> n)) cnt[n] ++;
    vector<int> res;
    for(int i = 0; i <= 1000; i ++) if(cnt[i]) res.push_back(i);
    sort(res.begin(), res.end(), cmp);
    for(auto x : res) cout << x << ' ' << cnt[x] << endl;
    int u = 0;
}
*/

标签:cnt,struct,re,资格考试,题解,cin,int,num,CCF
From: https://blog.csdn.net/m0_73290253/article/details/142716702

相关文章

  • CCF-CSP认证资格考试题解系列——第4次第3题节日
    #include<iostream>usingnamespacestd;intm[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};intis_run(intyear){ if(year%400==0||(year%4==0&&year%100))return1; return0;}intgetdays(intyear,intmonth){ if(month==2)returnm[month]+i......
  • P7078 [CSP-S2020] 贪吃蛇 题解
    P7078[CSP-S2020]贪吃蛇这题好啊题目传送门看到题之后觉得有点像砍蚯蚓的那道题看看题目可以证明,若一条蛇在吃完之后不是最弱的那一条蛇,那么他一定会选择吃,证明如下设蛇长为\(a_{1,\dots,n}\)且依次递增,那么很明显的因为​......
  • [题解]ABC374 A~E
    A-Takahashisan2直接判断字符串是否以san结尾即可。点击查看代码#include<bits/stdc++.h>usingnamespacestd;intmain(){ strings; cin>>s; intn=s.size(); if(s[n-1]=='n'&&s[n-2]=='a'&&s[n-3]=='s')cout<<&......