Time Limit: 2 sec / Memory Limit: 256 MB
Score : 500500 points
There is a string ss of length 33 or greater. No two neighboring characters in ss are equal.
Takahashi and Aoki will play a game against each other. The two players alternately performs the
following operation, Takahashi going first:
Remove one of the characters in ss, excluding both ends. However, a character cannot beremoved if removal of the character would result in two neighboring equal characters in ss.The player who becomes unable to perform the operation, loses the game. Determine which player
will win when the two play optimally.
The input is given from Standard Input in the following format:
ssIf Takahashi will win, print First. If Aoki will win, print Second.
Copy
abaCopy
SecondTakahashi, who goes first, cannot perform the operation, since removal of the b, which is the only character not at either ends of ss, would result in ssbecoming aa, with two as neighboring.
Copy
abcCopy
FirstWhen Takahashi removes b from ss, it becomes ac. Then, Aoki cannot perform the operation, since there is no character in ss, excluding both ends.
Copy
abcabCopy
First因为最后剩下的串一定是不能再操作的,即删除尽可能多的字符,
所以如果给出的字符串首位和末尾不同,那么我们肯定可以通过len-2次
操作使得该字符串只剩下首尾两个字符,如果相同,则肯定可以通过一
系列操作使得最后只剩下3个数,既然知道需要去掉几个数,之后由奇偶
性答案也就可以确定了。
The end;