-
Notifications
You must be signed in to change notification settings - Fork 249
/
Copy pathPrefixFunction.cpp
56 lines (44 loc) · 1.24 KB
/
PrefixFunction.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*************************************************************************************
Prefix function. O(N)
About it: http://e-maxx.ru/algo/prefix_function
Based on problem 1323 from informatics.mccme.ru:
http://informatics.mccme.ru/mod/statements/view3.php?id=241&chapterid=1323
*************************************************************************************/
#include <iostream>
#include <fstream>
#include <cmath>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <cstdlib>
#include <cstdio>
#include <string>
#include <cstring>
#include <cassert>
#include <utility>
#include <iomanip>
using namespace std;
const int MAXN = 1000100;
int n;
string s;
int p[MAXN];
int main() {
//assert(freopen("input.txt","r",stdin));
//assert(freopen("output.txt","w",stdout));
getline(cin, s);
n = (int) s.length();
for (int i = 2; i <= n; i++) {
int prev = p[i - 1];
while (prev > 0 && s[prev] != s[i - 1])
prev = p[prev];
if (s[prev] == s[i - 1])
prev++;
p[i] = prev;
}
for (int i = 1; i <= n; i++)
printf("%d ", p[i]);
return 0;
}