注意字典迭代的方式,常用auto会节省大量时间。 #include<bits/stdc++.h> using namespace std; int main(){ int T,key,val; cin>>T; map<int,int> res; while(T--){ cin>>key>>val; if(!res.count(key)){ res[key] = val; }else{ res...