codeforces539 D. Sasha and One More Name

Reading books is one of Sasha's passions. Once while he was reading one book, he became acquainted with an unusual character. The character told about himself like that: "Many are my names in many countries. Mithrandir among the Elves, Tharkûn to the Dwarves, Olórin I was in my youth in the West that is forgotten, in the South Incánus, in the North Gandalf; to the East I go not."

And at that moment Sasha thought, how would that character be called in the East? In the East all names are palindromes. A string is a palindrome if it reads the same backward as forward. For example, such strings as "kazak", "oo" and "r" are palindromes, but strings "abb" and "ij" are not.

Sasha believed that the hero would be named after one of the gods of the East. As long as there couldn't be two equal names, so in the East people did the following: they wrote the original name as a string on a piece of paper, then cut the paper minimum number of times k

, so they got k+1

pieces of paper with substrings of the initial string, and then unite those pieces together to get a new string. Pieces couldn't be turned over, they could be shuffled.

In this way, it's possible to achive a string abcdefg from the string f|de|abc|g using 3

cuts (by swapping papers with substrings f and abc). The string cbadefg can't be received using the same cuts.

More formally, Sasha wants for the given palindrome s

find such minimum k, that you can cut this string into k+1 parts, and then unite them in such a way that the final string will be a palindrome and it won't be equal to the initial string s

. It there is no answer, then print "Impossible" (without quotes).

Input

The first line contains one string s

(1≤|s|≤5000) — the initial name, which consists only of lowercase Latin letters. It is guaranteed that s

is a palindrome.

Output

Print one integer k

 — the minimum number of cuts needed to get a new name, or "Impossible" (without quotes).

Examples

Input

nolon

Output

2

Input

otto

Output

1

Input

qqqq

Output

Impossible

Input

kinnikkinnik

Output

1

Note

In the first example, you can cut the string in those positions: no|l|on, and then unite them as follows on|l|no. It can be shown that there is no solution with one cut.

In the second example, you can cut the string right in the middle, and swap peaces, so you get toot.

In the third example, you can't make a string, that won't be equal to the initial one.

In the fourth example, you can cut the suffix nik and add it to the beginning, so you get nikkinnikkin.

思路:

这个题目的答案一共就三种,Impossible,1,2;

Impossible:

若字符串为偶数,如果字符全相等,则符合要求。

若为奇数,如果除了中间的字符别的都相等,则符合要求。

下面的则是求循环节。

如果循环节为偶数,则一定是1.

如果是奇数,则一定是2.

具体证明请看这篇博客:

https://blog.csdn.net/white_156/article/details/88081018

代码如下:

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;
const int maxn=5*1e3+5;
string s;
int len;
int vis[105];
bool judge()
{
    if(len==1) return true;
    if(len%2)
    {
        int kind=0;
        for (int i=0;i<len;i++)
        {
            if(i==len/2) continue;
            int c=s[i]-'a';
            if(vis[c]==0)
            {
                vis[c]=1;
                kind++;
            }
           if(kind>=2) return false;
        }
        return true;
    }
    else
    {
        int kind=0;
        for (int i=0;i<len;i++)
        {
            int c=s[i]-'a';
            if(vis[c]==0)
            {
                vis[c]=1;
                kind++;
            }
            if(kind>=2) return false;
        }
        return true;
    }
}
int cir(int l,int mid)
{
    for (int i=l;i<mid;i++)
    {
        if(s[i]!=s[i+mid]) return 0;
    }
    return 1;
}
int Can ()
{
    if(len%2) return 2;
    int l=0,r=len-1;
    int tlen=len;
    while(l<r)
    {
        string a=s.substr(0,tlen/2);
        string b=s.substr(tlen/2,tlen/2);
        if(a!=b) return 1;
        tlen/=2;
        if(tlen%2) return 2;
    }
    return 2;
}
int main()
{
    memset (vis,0,sizeof(vis));
    cin>>s;
    len=s.size();
    if(judge()==true)
    {
        printf("Impossible\n");
        return 0;
    }
    printf("%d\n",Can());
    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_41410799/article/details/89066346