Tricky and Clever Password

题意翻译

一个长度为奇数的回文串可以写成 $a+b+a'$ 的形式($a$ 可以为空),其中 $a'$ 是 $a$ 的反串。现在将它加密成 $S$,变成了 $x+a+y+b+z+a'$ 的形式,给出 $S$,求最长可能的原串。

题目描述

In his very young years the hero of our story, king Copa, decided that his private data was hidden not enough securely, what is unacceptable for the king. That's why he invented tricky and clever password (later he learned that his password is a palindrome of odd length), and coded all his data using it. Copa is afraid to forget his password, so he decided to write it on a piece of paper. He is aware that it is insecure to keep password in such way, so he decided to cipher it the following way: he cut $ x $ characters from the start of his password and from the end of it ( $ x $ can be $ 0 $ , and $ 2x $ is strictly less than the password length). He obtained 3 parts of the password. Let's call it $ \mathit{prefix} $ , $ \mathit{middle} $ and $ \mathit{suffix} $ correspondingly, both $ \mathit{prefix} $ and $ \mathit{suffix} $ having equal length and $ \mathit{middle} $ always having odd length. From these parts he made a string $ A+\mathit{prefix}+B+\mathit{middle}+C+\mathit{suffix} $ , where $ A $ , $ B $ and $ C $ are some (possibly empty) strings invented by Copa, and « $ + $ » means concatenation. Many years have passed, and just yesterday the king Copa found the piece of paper where his ciphered password was written. The password, as well as the strings $ A $ , $ B $ and $ C $ , was completely forgotten by Copa, so he asks you to find a password of maximum possible length, which could be invented, ciphered and written by Copa.

输入输出格式

输入格式


The input contains single string of small Latin letters with length from $ 1 $ to $ 10^{5} $ characters.

输出格式


The first line should contain integer $ k $ — amount of nonempty parts of the password in your answer (![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF30E/49cbd6dc77599182d92cfa2c7d962a3fbbf96901.png)). In each of the following $ k $ lines output two integers $ x_{i} $ and $ l_{i} $ — start and length of the corresponding part of the password. Output pairs in order of increasing $ x_{i} $ . Separate the numbers in pairs by a single space. Starting position $ x_{i} $ should be an integer from $ 1 $ to the length of the input string. All $ l_{i} $ must be positive, because you should output only non-empty parts. The middle part must have odd length. If there are several solutions, output any. Note that your goal is to maximize the sum of $ l_{i} $ , but not to maximize $ k $ .

输入输出样例

输入样例 #1

abacaba

输出样例 #1

1
1 7

输入样例 #2

axbya

输出样例 #2

3
1 1
2 1
5 1

输入样例 #3

xabyczba

输出样例 #3

3
2 2
4 1
7 2