0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2022-04-12 13:32:39 +08:00
parent d2719a853e
commit 59821f2755
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

41
AcWing/141/141.cpp Normal file
View File

@ -0,0 +1,41 @@
#include <iostream>
#include <string>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1e6 + 5;
int t, n, next[N];
std::string s;
int main() {
std::ios::sync_with_stdio(false);
while (cin >> n, n) {
cout << "Test case #" << ++t << endl;
cin >> s;
s = ' ' + s;
next[1] = 0;
for (int i = 2, j = 0; i <= n; i++) {
while (j && s[i] != s[j + 1]) j = next[j];
if (s[i] == s[j + 1]) j++;
next[i] = j;
}
for (int i = 2; i <= n; i++) {
int len = i - next[i];
if (i % len == 0 && i / len > 1) {
cout << i << ' ' << i / len << endl;
}
}
cout << endl;
}
return 0;
}