.
2024-09-15 10:00:34
发布于:江苏
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
set<int> a;
map<int,int> b;
int main(){
int n;
cin>>n;
while(n--){
int k;
cin>>k;
a.insert(k);
b[k];
}
for(set<int>::iterator it=a.begin();it!=a.end();it)
cout<<*it<<" "<<b[*it]<<endl;
return 0;
}
这里空空如也
有帮助,赞一个