「CF497B」Tennis Game

2014年12月18日3,3990

Petya and Gena love playing table tennis. A single match is played according to the following rules: a match consists of multiple sets, each set consists of multiple serves. Each serve is won by one of the players, this player scores one point. As soon as one of the players scores t points, he wins the set; then the next set starts and scores of both players are being set to 0. As soon as one of the players wins the total of s sets, he wins the match and the match is over. Here s and t are some positive integer numbers.

To spice it up, Petya and Gena choose new numbers s and t before every match. Besides, for the sake of history they keep a record of each match: that is, for each serve they write down the winner. Serve winners are recorded in the chronological order. In a record the set is over as soon as one of the players scores t points and the match is over as soon as one of the players wins s sets.

Petya and Gena have found a record of an old match. Unfortunately, the sequence of serves in the record isn’t divided into sets and numbers s and t for the given match are also lost. The players now wonder what values of s and t might be. Can you determine all the possible options?

Input

The first line contains a single integer n — the length of the sequence of games (1 ≤ n ≤ 105).

The second line contains n space-separated integers ai. If ai = 1, then the i-th serve was won by Petya, if ai = 2, then the i-th serve was won by Gena.

It is not guaranteed that at least one option for numbers s and t corresponds to the given record.

Output

In the first line print a single number k — the number of options for numbers s and t.

In each of the following k lines print two integers si and ti — the option for numbers s and t. Print the options in the order of increasing si, and for equal si — in the order of increasing ti.

Sample test(s)
input

output

input

output

input

output

input

output

 

题解

我一开始写成了暴力TAT

获胜的一定是最后一个,设为x,另一人y

枚举T,对于每一场i,记录下次x的得分点nxt[i]。。。

暴力可以每次从now移到nxt[now](即让x得1分),判y加上now到nxt[now]之间的得分数是否超过T,若超过,则让y得分到T为止。。。

改用二分,前缀和或者倍增每次x让得T分就行了。。。

复杂度nlogn或者nlognlogn

测了下暴力 TLE23

AC

 

 

avatar
  Subscribe  
提醒