QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#533070 | #7876. Cyclic Substrings | zake | WA | 43ms | 113968kb | C++17 | 1.6kb | 2024-08-25 16:44:56 | 2024-08-25 16:44:58 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N=6e6+5;
string s;
int m,p,q,fail[N],cnt[N],len[N],tot,last,ch[N][10];
int ans;
inline int newnode(int x){
//建立一个新节点,长度为x
len[++tot]=x;return tot;
}
inline int getfail(int x,int n){
//跳fail指针知道找到后缀回文为止
while(s[n-len[x]-1]!=s[n]) x=fail[x];
return x;
}
int main(){
cin>>m>>s;
s+=s;
s=' '+s;
//一堆乱七八糟的初始化
fail[0]=1,last=0;
len[0]=0,len[1]=-1,tot=1;
for(int i=1;i<=m;++i){
s[i]-='0';
//找到可以回文的位置
p=getfail(last,i);
if(!ch[p][s[i]]){
//如果有了转移就不用建了,否则要新建
//前后都加上新字符,所以新回文串长度要加2
q=newnode(len[p]+2);
//因为fail指向的得是原串的严格后缀,所以要从p的fail开始找起
fail[q]=ch[getfail(fail[p],i)][s[i]];
//记录转移
ch[p][s[i]]=q;
}
last=ch[p][s[i]];
}
for(int i=m+1;i<=2*m;++i){
s[i]-='0';
//找到可以回文的位置
p=getfail(last,i);
if(!ch[p][s[i]]){
//如果有了转移就不用建了,否则要新建
//前后都加上新字符,所以新回文串长度要加2
q=newnode(len[p]+2);
//因为fail指向的得是原串的严格后缀,所以要从p的fail开始找起
fail[q]=ch[getfail(fail[p],i)][s[i]];
//记录转移
ch[p][s[i]]=q;
}
++cnt[last=ch[p][s[i]]];
}
for(int i=tot;i>1;--i){
cnt[fail[i]]+=cnt[i];
if(len[i]<=m){
ans=(ans+cnt[i]*cnt[i]%998244353*len[i])%998244353;
}
}
printf("%d\n",ans);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 10252kb
input:
5 01010
output:
39
result:
ok 1 number(s): "39"
Test #2:
score: 0
Accepted
time: 1ms
memory: 9944kb
input:
8 66776677
output:
192
result:
ok 1 number(s): "192"
Test #3:
score: 0
Accepted
time: 1ms
memory: 9884kb
input:
1 1
output:
1
result:
ok 1 number(s): "1"
Test #4:
score: 0
Accepted
time: 0ms
memory: 9940kb
input:
2 22
output:
12
result:
ok 1 number(s): "12"
Test #5:
score: 0
Accepted
time: 1ms
memory: 9824kb
input:
2 21
output:
2
result:
ok 1 number(s): "2"
Test #6:
score: 0
Accepted
time: 0ms
memory: 10140kb
input:
3 233
output:
10
result:
ok 1 number(s): "10"
Test #7:
score: 0
Accepted
time: 0ms
memory: 10268kb
input:
3 666
output:
54
result:
ok 1 number(s): "54"
Test #8:
score: -100
Wrong Answer
time: 43ms
memory: 113968kb
input:
1000000 3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333...
output:
137656696
result:
wrong answer 1st numbers differ - expected: '496166704', found: '137656696'