We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
#include<cmath>#include<cstdio>#include<vector>#include<iostream>#include<algorithm>#include<map>usingnamespacestd;intmain(){/* Enter your code here. Read input from STDIN. Print output to STDOUT */intt;cin>>t;map<string,int>mp;while(t--){inta;cin>>a;strings;cin>>s;if(a==1){intmarks;cin>>marks;autoit=mp.find(s);if(it!=mp.end()){mp[s]+=marks;}else{mp.insert(make_pair(s,marks));}}if(a==2){mp.erase(s);}if(a==3){if(mp.find(s)!=mp.end()){cout<<mp[s]<<endl;}else{cout<<0<<endl;}}}return0;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Maps-STL
You are viewing a single comment's thread. Return to all comments →