이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int h = 569, mod = 1LL<<40;
signed main()
{
int n,k;
cin>>n>>k;
map<int,int> ans;
int fin_ans=0;
for (int a=1;a<=n;a++)
for (int b=0;b<k;b++)
{
string s;
cin>>s;
if (a==1)
{
ans[(int)s[0]]=1;
continue;
}
int hs[2]={},x=0;
for (int i=0;i<=1;i++)
{
for (int j=i;j<a-1+i;j++)
hs[i]=h*hs[i]+s[j],hs[i]%=mod;
if (ans.find(hs[i])!=ans.end())
x+=ans[hs[i]];
}
if (hs[0]==hs[1])
x/=2;
int sh=0;
for (int i=0;i<a;i++)
sh=h*sh+s[i],sh%=mod;
ans[sh]=x;
if (a==n)
fin_ans+=x;
}
cout<<fin_ans<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |