AIBOHP - Aibohphobia


BuggyD suffers from AIBOHPHOBIA - the fear of Palindromes. A palindrome is a string that reads the same forward and backward.

To cure him of this fatal disease, doctors from all over the world discussed his fear and decided to expose him to large number of palindromes. To do this, they decided to play a game with BuggyD. The rules of the game are as follows:

BuggyD has to supply a string S. The doctors have to add or insert characters to the string to make it a palindrome. Characters can be inserted anywhere in the string.

The doctors took this game very lightly and just appended the reverse of S to the end of S, thus making it a palindrome. For example, if S = "fft", the doctors change the string to "ffttff".

Nowadays, BuggyD is cured of the disease (having been exposed to a large number of palindromes), but he still wants to continue the game by his rules. He now asks the doctors to insert the minimum number of characters needed to make S a palindrome. Help the doctors accomplish this task.

For instance, if S = "fft", the doctors should change the string to "tfft", adding only 1 character.

Input

The first line of the input contains an integer t, the number of test cases. t test cases follow.

Each test case consists of one line, the string S. The length of S will be no more than 6100 characters, and S will contain no whitespace characters.

Output

For each test case output one line containing a single integer denoting the minimum number of characters that must be inserted into S to make it a palindrome.

Example

Input:
1
fft

Output:
1

hide comments
luc815689327: 2016-08-17 13:42:53

@vignesh294 google stack and heap memory and you will know why.

devbishnoi: 2016-08-07 11:49:18

just find the longest common sub sequence with its reverse string through top down or bottom . Both works fine.

mkfeuhrer: 2016-07-22 07:19:04

if getting SIGSEV make sure u declare dp array globally with size dp[6000][6000]
got many RE cz of this! rest simply think LCS. :-)

shubiks: 2016-07-15 13:36:37

Top-Down dp is sweet! ;)
AC in one go! :D

anuj0503: 2016-07-14 20:55:46

For those who find it difficult.
1. Read LCS from geeksforgeek or somewhere.
2. Reverse the string.
and then try to think....

Last edit: 2016-07-14 20:56:03
Ashish Gupta: 2016-07-09 07:45:36

One sample test case:

aaffaba

vignesh294: 2016-07-01 11:57:52

RE if array is not declared globally. Why? Can anyone point me out the reason?

sonali9696: 2016-06-30 12:15:05

TLE in recursion with memoization :/
Bottom-up with the same solution works

Last edit: 2016-06-30 12:41:46
coderaashir: 2016-06-29 17:50:25

Is fft the same as Fft?

baadshah_: 2016-06-27 09:58:10

used Bottom Up approach!AC


Added by:Matthew Reeder
Date:2006-10-29
Time limit:1.940s
Source limit:30000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:Al-Khawarizm 2006