#include <iostream>
#include <unordered_map>
#include <string>
#include <vector>
using namespace std;
// 模拟获取访问日志接口
vector<string> get_logs() { return {}; }
int main() {
// 存储<用户ID, 访问次数>的统计结果
_______ cnt_map;
vector<string> logs = get_logs();
for (auto& uid : logs) {
// 对应uid的访问次数+1
________;
}
return 0;
}