CF1138A.Sushi for Two

传统题 时间 2000 ms 内存 256 MiB 4 尝试 1 已通过 1 标签

Sushi for Two

Arkady invited Anna for a dinner to a sushi restaurant. The restaurant is a bit unusual: it offers nn pieces of sushi aligned in a row, and a customer has to choose a continuous subsegment of these sushi to buy.

The pieces of sushi are of two types: either with tuna or with eel. Let's denote the type of the ii-th from the left sushi as tit_i, where ti=1t_i = 1 means it is with tuna, and ti=2t_i = 2 means it is with eel.

Arkady does not like tuna, Anna does not like eel. Arkady wants to choose such a continuous subsegment of sushi that it has equal number of sushi of each type and each half of the subsegment has only sushi of one type. For example, subsegment [2,2,2,1,1,1][2, 2, 2, 1, 1, 1] is valid, but subsegment [1,2,1,2,1,2][1, 2, 1, 2, 1, 2] is not, because both halves contain both types of sushi.

Find the length of the longest continuous subsegment of sushi Arkady can buy.

Input

The first line contains a single integer nn (2n1000002 \le n \le 100\,000) — the number of pieces of sushi.

The second line contains nn integers t1t_1, t2t_2, ..., tnt_n (ti=1t_i = 1, denoting a sushi with tuna or ti=2t_i = 2, denoting a sushi with eel), representing the types of sushi from left to right.

It is guaranteed that there is at least one piece of sushi of each type. Note that it means that there is at least one valid continuous segment.

Output

Print a single integer — the maximum length of a valid continuous segment.

Note

In the first example Arkady can choose the subsegment [2,2,1,1][2, 2, 1, 1] or the subsegment [1,1,2,2][1, 1, 2, 2] with length 44.

In the second example there is no way but to choose one of the subsegments [2,1][2, 1] or [1,2][1, 2] with length 22.

In the third example Arkady's best choice is the subsegment [1,1,1,2,2,2][1, 1, 1, 2, 2, 2].

Samples

7
2 2 2 1 1 2 2
4
6
1 2 1 2 1 2
2
9
2 2 1 1 1 2 2 2 2
6

在线编程 IDE

建议全屏模式获得最佳体验