Files
python/TangDou/LuoGuBook/P3370.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

33 lines
832 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <bits/stdc++.h>
using namespace std;
const int K = 130; //一个大于128的数字
const int MOD = 23333; //素数常数
int n; //字符串个数
int ans; //结果
string s; //字符串
// 链表
vector<string> linker[MOD + 10];
void insert(string t) {
//计算字符串t的HASH值
int hash = 1;
for (int i = 0; s[i]; i++) hash = (hash * K + s[i]) % MOD;
//找到HASH链表逐个排查存在则结果不+1否则+1
for (int i = 0; i < linker[hash].size(); i++)
if (linker[hash][i] == t) return;
//放入链表
linker[hash].push_back(t);
//结果+1
ans++;
}
int main() {
cin >> n;
for (int i = 1; i <= n; i++) cin >> s, insert(s);
cout << ans << endl;
return 0;
}