欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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 ;
}
相关标签: c++ STL