题解 | #合并表记录#

合并表记录

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

#include #include #include using namespace std; int main() { int key, value; map<int, int> res; int i; cin >> i; while (i--) { cin >> key >> value; res[key] += value; } for (auto c = res.begin(); c != res.end(); c++) {

    if (c->second != 0) {
        cout << c->first << ' ' << c->second << endl;
    }
}
return 0;

}

全部评论

相关推荐

10-07 23:57
已编辑
电子科技大学 Java
八街九陌:博士?客户端?开发?啊?
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务