P1097 统计数字 洛谷(map)
程序员文章站
2024-03-16 21:16:22
...
直接用map容器建立对应关系水过…首先别忘记清空整个map容器,最后输入键使对应的值+1就好了。代码如下:
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include <cmath>
#include <stack>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <utility>
#define ll long long
#define ull_ unsigned long long
using namespace std ;
int main(){
int n ;
cin >> n ;
map<int , int> map_ ;
map_.clear() ;
for ( int i = 0 ; i < n ; i ++ ){
int x ;
cin >> x ;
map_[x] ++ ;
}
map<int , int>::iterator it ;
for ( it = map_.begin() ; it != map_.end() ; it ++ ){
cout << it->first << " " << it->second << endl ;
}
return 0 ;
}
上一篇: Pygame基础之 精灵(一):基本概念
下一篇: canvas圆形和正方形碰撞检测