#include <bits/stdc++.h>
using namespace std;
const int N = 3e5;
#define int long long
bool not_pr[N];
signed main()
{
ios::sync_with_stdio(0);
cin.tie(NULL),cout.tie(NULL);
vector<long long> hashes,modes={1LL<<50,1LL<<55,1LL<<40,1LL<<47,1LL<<45};
for (int i=2;i<N;i++)
for (int j=i+i;j<N;j+=i)
not_pr[j]=true;
for (int i=1000;i<N;i++)
if (!not_pr[i])
{
hashes.push_back(i);
i+=100;
}
int om=hashes.size();
srand(time(NULL));
long long h=hashes[rand()%om],h1=hashes[rand()%om];
int mod = modes[rand()%5],mod1=modes[rand()%5];
int h2 = hashes[rand()%om],mod2=modes[rand()%5];
int n;
cin>>n;
map<int,vector<string>> mp;
unordered_set<int> se;
se.reserve(n+369);
for (int i=0;i<n;i++)
{
string s;
cin>>s;
reverse(s.begin(),s.end());
mp[s.size()].push_back(s);
int m=s.size(),hs=0,hs1=0;
for (int j=0;j<m;j++)
hs=(hs*h+s[j])%mod;
for (int j=0;j<m;j++)
hs1=(hs1*h1+s[j])%mod1;
se.insert((hs+hs1*h2)%mod2);
}
vector<string> v;
for (auto i:mp)
for (auto j:i.second)
v.push_back(j);
reverse(v.begin(),v.end());
unordered_map<int,int> ans;
ans.reserve(n+369);
while (!v.empty())
{
string s=v.back();
v.pop_back();
int m=s.size();
int hs=0,mx=0,hs1=0;
for (int i=0;i<m-1;i++)
hs=(hs*h+s[i])%mod;
for (int i=0;i<m-1;i++)
hs1=(hs1*h1+s[i])%mod1;
if (ans.find((hs+hs1*h2)%mod2)!=ans.end())
mx=ans[(hs+hs1*h2)%mod2];
for (int c='a';c<='z';c++)
{
int p=((hs*h+c)%mod+(hs1*h1+c)%mod1*h2)%mod2;
if (se.find(p)!=se.end())
mx++;
}
int c=s[m-1];
int p=((hs*h+c)%mod+(hs1*h1+c)%mod1*h2)%mod2;
ans[p]=mx;
}
int res=0;
for (auto i:ans)
res=max(res,i.second);
cout<<res<<endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
856 KB |
Output is correct |
2 |
Correct |
2 ms |
604 KB |
Output is correct |
3 |
Correct |
3 ms |
604 KB |
Output is correct |
4 |
Incorrect |
882 ms |
75536 KB |
Output isn't correct |
5 |
Correct |
72 ms |
7156 KB |
Output is correct |
6 |
Incorrect |
18 ms |
2788 KB |
Output isn't correct |
7 |
Incorrect |
16 ms |
2680 KB |
Output isn't correct |
8 |
Incorrect |
13 ms |
2448 KB |
Output isn't correct |
9 |
Incorrect |
87 ms |
9352 KB |
Output isn't correct |
10 |
Incorrect |
14 ms |
2356 KB |
Output isn't correct |