CF353E.Antichain
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You have a directed acyclic graph G , consisting of n vertexes, numbered from 0 to n−1 . The graph contains n edges numbered from 0 to n−1 . An edge with number i connects vertexes i and (i+1) mod n , and it can be directed in either direction (from i to (i+1) mod n , or vise versa).
Operation x mod y means taking the remainder after dividing number x by number y .
Let's call two vertexes u and v in graph G comparable if the graph contains a path either from u to v or from v to u . We'll assume that an antichain is a set of vertexes of graph G , where any two distinct vertexes are not comparable. The size of an antichain is the number of vertexes in the corresponding set. An antichain is maximum if the graph doesn't have antichains of a larger size.
Your task is to find the size of the maximum antichain in graph G .
输入格式
The first line contains the sequence of characters s0s1... sn−1 (2<=n<=106) , consisting of numbers zero and one. The length of the line (number n ) corresponds to the number of vertexes and edges in graph G . If character si (i>=0) equals 0 , then the edge between vertexes i and (i+1) mod n is directed from the i -th vertex to the (i+1) mod n -th one, otherwise — to the opposite point.
It is guaranteed that the given graph is acyclic.
输出格式
Print a single integer — the size of the maximum antichain of graph G .
输入输出样例
输入#1
001
输出#1
1
输入#2
110010
输出#2
3
说明/提示
Consider the first test sample. The graph's G edges are: 0→1 , 1→2 , 0→2 . We can choose the set of vertexes [0] as the maximum antichain. We cannot choose an antichain of larger size.