题库练习 Plasticine zebra
← 上一题 下一题 →

A12061 | Plasticine zebra

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Is there anything better than going to the zoo after a tiresome week at work? No wonder Grisha feels the same while spending the entire weekend accompanied by pretty striped zebras.

Inspired by this adventure and an accidentally found plasticine pack (represented as a sequence of black and white stripes), Grisha now wants to select several consequent (contiguous) pieces of alternating colors to create a zebra. Let's call the number of selected pieces the length of the zebra.

Before assembling the zebra Grisha can make the following operation $0$ or more times. He splits the sequence in some place into two parts, then reverses each of them and sticks them together again. For example, if Grisha has pieces in the order "bwbbw" (here 'b' denotes a black strip, and 'w' denotes a white strip), then he can split the sequence as bw|bbw (here the vertical bar represents the cut), reverse both parts and obtain "wbwbb".

Determine the maximum possible length of the zebra that Grisha can produce.

输入格式

The only line contains a string $s$ ( $1 \le |s| \le 10^5$ , where $|s|$ denotes the length of the string $s$ ) comprised of lowercase English letters 'b' and 'w' only, where 'w' denotes a white piece and 'b' denotes a black piece.

输出格式

Print a single integer — the maximum possible zebra length.

输入输出样例

输入 #1
bwwwbwwbw
输出 #1
5
输入 #2
bwwbwwb
输出 #2
3
C++ 编辑器
输入
输出