题解 | #合并表记录# CPP

合并表记录

https://www.nowcoder.com/practice/de044e89123f4a7482bd2b214a685201

#include <iostream>
#include <map>

using namespace std;

int main() {
    map<int, int> map_num;  
    int n;
    cin >> n;
    int index, value;
    for (int i = 0; i < n; ++i) {
        cin >> index >> value;
        if (!map_num.count(index)) {
            map_num[index] = value;
        } else {
            map_num[index] += value;
        }
    }
    for (auto entry : map_num) {
        cout << entry.first << " ";
        cout << entry.second << endl;
    }
    return 0;
}

全部评论

相关推荐

冷艳的小师弟在看机会:jd测评乱点直接被挂了,哭死~
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务