#34450: c++ map


k0905920491@gmail.com (魚( ´•̥ו̥` ))

學校 : 國立新竹高級工業職業學校
編號 : 136251
來源 : [114.42.38.77]
最後登入時間 :
2023-11-26 13:34:19
g796. 檔案分類 (Files) -- TOI練習賽202111新手組第1題 | From: [114.36.44.28] | 發表日期 : 2023-03-21 11:02

利用c++內建STL的map

自動存入key與value,最後還會以key排序!

include <iostream>
#include <map>
using namespace std;
int main(){
    int n,tem;
    map<int,int> ans;
    cin>>n;
    while(n--){
        cin>>tem;
        tem = (tem%1000)/10;
        ans[tem]++;
    }
    for(map<int,int>::iterator it=ans.begin();it!=ans.end();it++){
        cout<<it->first<<" "<<it->second<<endl;
    }
}

 
ZeroJudge Forum