This documentation is automatically generated by online-judge-tools/verification-helper
#define PROBLEM "https://judge.yosupo.jp/problem/zalgorithm"
#include "test/template.hpp"
#include "src/string/Zalgorithm.hpp"
int main() {
cin.tie(0)->sync_with_stdio(0);
string S;
cin >> S;
auto z = Z(S);
rep(i, 0, sz(S)) cout << z[i] << " \n"[i + 1 == sz(S)];
}
#line 1 "test/string/Zalgorithm.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/zalgorithm"
#line 1 "test/template.hpp"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll INF = LLONG_MAX / 4;
#define rep(i, a, b) for(ll i = a; i < (b); i++)
#define all(a) begin(a), end(a)
#define sz(a) ssize(a)
bool chmin(auto& a, auto b) { return a > b ? a = b, 1 : 0; }
bool chmax(auto& a, auto b) { return a < b ? a = b, 1 : 0; }
#line 1 "src/string/Zalgorithm.hpp"
// Z[i] := LCP(s, s[i:])
// abacaba -> 7010301
auto Z(string s) {
ll n = sz(s), l = -1, r = -1;
vector<ll> z(n, n);
rep(i, 1, n) {
ll& x = z[i] = i < r ? min(r - i, z[i - l]) : 0;
while(i + x < n && s[i + x] == s[x]) x++;
if(i + x > r) l = i, r = i + x;
}
return z;
}
#line 4 "test/string/Zalgorithm.test.cpp"
int main() {
cin.tie(0)->sync_with_stdio(0);
string S;
cin >> S;
auto z = Z(S);
rep(i, 0, sz(S)) cout << z[i] << " \n"[i + 1 == sz(S)];
}