题解 | #合并表记录#
合并表记录
https://www.nowcoder.com/practice/de044e89123f4a7482bd2b214a685201
#include <iostream>
#include <string>
#include <cctype>
#include <cstdlib>
#include <map>
using namespace std;
int main() {
map<int, int> map;
int count;
cin >> count;
cin.get();
for (int i = 0; i < count; i++) {
string tmp;
getline(cin, tmp);
if (tmp.empty()) {
continue;
}
auto idx = tmp.find(' ');
if (map.count(atoi(tmp.substr(0, idx).c_str())) == 0) {
map[atoi(tmp.substr(0, idx).c_str())] = atoi(tmp.substr(idx + 1,
tmp.size()).c_str());
} else {
map[atoi(tmp.substr(0, idx).c_str())] = atoi(tmp.substr(idx + 1,
tmp.size()).c_str()) + map[atoi(tmp.substr(0, idx).c_str())];
}
}
//
for (auto it = map.begin(); it != map.end(); it++) {
std::cout << it->first << " " << it->second << std::endl;
}
}
// 64 位输出请用 printf("%lld")