This documentation is automatically generated by online-judge-tools/verification-helper
#define PROBLEM "https://judge.yosupo.jp/problem/enumerate_palindromes"
#include "template.hpp"
#include "string/manacher.hpp"
int main(){
string s;
cin >> s;
for(auto x:manacher(s))cout << x << " ";
}
#line 1 "verify/yosupo/string/enumerate_palindromes.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/enumerate_palindromes"
#line 1 "template.hpp"
#include<bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
using ll = long long;
using db = long double;
using vi = vector<int>;
using vl = vector<ll>;
using vd = vector<db>;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
using pdd = pair<db,db>;
const int INF=INT_MAX/2;
const int MOD=998244353;
const int MOD2=1000000007;
const ll LINF=LLONG_MAX/2;
const db DINF=numeric_limits<db>::infinity();
const db EPS=1e-9;
const db PI=acos(db(-1));
template<class T>
using ordered_set = tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>;
template<class T>
using ordered_multiset = tree<T,null_type,less_equal<T>,rb_tree_tag,tree_order_statistics_node_update>;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
mt19937_64 rng64(chrono::steady_clock::now().time_since_epoch().count());
#line 2 "string/manacher.hpp"
/**
* Author: Teetat T.
* Date: 2024-06-14
* Description: Manacher's Algorithm. pal[i] := the length of the longest palindrome centered at i/2.
*/
template<class STR>
vector<int> manacher(const STR &s){
int n=(int)s.size();
if(n==0)return {};
vector<int> pal(2*n-1);
for(int p=0,l=-1,r=-1;p<2*n-1;p++){
int i=(p+1)>>1,j=p>>1;
int k=(i>=r?0:min(r-i,pal[2*(l+r)-p]));
while(j+k+1<n&&i-k-1>=0&&s[j+k+1]==s[i-k-1])k++;
pal[p]=k;
if(j+k>r)l=i-k,r=j+k;
}
for(int i=0;i<2*n-1;i++)pal[i]=pal[i]<<1|(i&1^1);
return pal;
}
#line 4 "verify/yosupo/string/enumerate_palindromes.test.cpp"
int main(){
string s;
cin >> s;
for(auto x:manacher(s))cout << x << " ";
}