P3370题解 发表于 2020-08-15 分类于 Luogu , Solutions 阅读次数: 本文字数: 368 阅读时长 ≈ 1 分钟 我寻思着map不就能过了吗 题解写那么麻烦是为什么呢。。。 直接上代码 1234567891011121314151617#include<bits/stdc++.h>//万能头using namespace std;int main(){ int n,ans=0; cin>>n; string s; map<string,bool>hash;//C++特有STL容器map,可用于桶排序 //map使用格式:map<下标类型,数据类型>容器名称 for(int i=0;i<n;i++) { cin>>s; if(!hash[s]) ans++,hash[s]=true;//核心,如果没有标记过就标记,答案+1 } cout<<ans; return 0;}