题解 | 简单错误记录

简单错误记录

https://www.nowcoder.com/practice/2baa6aba39214d6ea91a2e03dff3fbeb

#include <iostream>
#include <map>
#include <algorithm>
#include <sstream>
#include <vector>
using namespace std;

int main() {
    string str;
    int line;
    map<pair<string, int>, int> umap;
    vector<pair<string, int>> order;
    while(cin >> str >> line) {
        string token;
        stringstream ss(str);
        while (getline(ss, token, '\\')); //两个反斜杠才表示用一个反斜杠作为分隔符 注意反斜杠的特殊性
        int n = token.size();
        if(n > 16) {
            token = token.substr(n-16, 16);
        }
        pair<string, int> key = {token, line};
        
        if(umap.find(key) == umap.end()) {
            order.push_back(key);
        }
        ++umap[key];
        if(order.size() > 8) {
            order.erase(order.begin());
        }
    }
    for(const auto& it: order) {
        cout << it.first << " " << it.second << " " << umap[it] << endl;
    }
    return 0;
}

全部评论

相关推荐

03-20 18:39
已编辑
电子科技大学 C++
点赞 评论 收藏
分享
03-19 10:07
已编辑
广东药科大学 Java
Yki_:你倒是进一个面啊
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务