Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
48404 seanlsy 【模拟赛3】无限复制 ZBN 是 MJ ? C++ 通过 100 0 MS 368 KB 284 2022-04-12 15:21:59

Tests(10/10):


#include <bits/stdc++.h> using namespace std; char t[1000005]; int n[1000005],x; void Init(){ for(int i=2,j=0;i<=x;i++){ while(j&&t[j+1]!=t[i]) j=n[j]; j+=(t[j+1]==t[i]); n[i]=j; } } int main(){ cin>>x>>(t+1); Init(); printf("%d\n",x-n[x]); return 0; }


测评信息: