题解 | #简单错误记录#

简单错误记录

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

#include <iostream>
#include <iterator>
#include <string>
#include <algorithm>
#include <unordered_map>
#include <queue>
using namespace std;

int main(int argc, char* argv[]){
    string str;
    unordered_map<string, int> dic;
    queue<string> que;
    while(getline(cin, str)){
        string::reverse_iterator name_start = find(str.rbegin(), str.rend(), '\\');
        string::iterator name_end = find(str.begin(), str.end(), ' ');
        int dist = distance(name_start.base(), name_end);
        if(dist > 16){
            int start_index = distance(str.begin(), name_end-16);
            int length = distance(name_end-16, str.end());
            str = str.substr(start_index, length);
        }
        else{
            int start_index = distance(str.begin(), name_start.base());
            int length = distance(name_start.base(), str.end());
            str = str.substr(start_index, length);               
        }
        if(!dic.count(str)){
            que.push(str);
        }
        ++dic[str];
    }
    int n = que.size();
    while(n > 8){
        que.pop();
        --n;
    }    
    while(!que.empty()){
        cout << que.front() << " " << dic[que.front()] << endl;
        que.pop();
    }
    return 0;
}
全部评论

相关推荐

牛客410815733号:这是什么电影查看图片
点赞 评论 收藏
分享
一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务