题目难度不算大,不过前两题涉及字符串处理,C++写起来还是挺繁琐的,贴一下代码,3道题都AC了 第一题 #include <stdio.h> #include <iostream> #include <string> #include <algorithm> #include <map> #include <vector> using namespace std; struct Info { string name; int cnt; }; vector<Info> vec; m...