CF1791C.Prepend and Append

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

Prepend and Append

Timur initially had a binary string^{\dagger} ss (possibly of length 00). He performed the following operation several (possibly zero) times:

  • Add 0 to one end of the string and 1 to the other end of the string. For example, starting from the string 1011, you can obtain either $\color{red}{\texttt{0}}\texttt{1011}\color{red}{\texttt{1}}$ or $\color{red}{\texttt{1}}\texttt{1011}\color{red}{\texttt{0}}$.

You are given Timur's final string. What is the length of the shortest possible string he could have started with?

^{\dagger} A binary string is a string (possibly the empty string) whose characters are either 0 or 1.

Input

The first line of the input contains an integer tt (1t1001 \leq t \leq 100) — the number of testcases.

The first line of each test case contains an integer nn (1n20001 \leq n \leq 2000) — the length of Timur's final string.

The second line of each test case contains a string ss of length nn consisting of characters 0 or 1, denoting the final string.

Output

For each test case, output a single nonnegative integer — the shortest possible length of Timur's original string. Note that Timur's original string could have been empty, in which case you should output 00.

Note

In the first test case, the shortest possible string Timur started with is 0, and he performed the following operation: 0} \to \color{red}{\texttt{1}}\texttt{0}\color{red}{\texttt{0}.

In the second test case, the shortest possible string Timur started with is 11, and he performed the following operation: 11} \to \color{red}{\texttt{0}}\texttt{11}\color{red}{\texttt{1}.

In the third test case, the shortest possible string Timur started with is 10101, and he didn't perform any operations.

In the fourth test case, the shortest possible string Timur started with is the empty string (which we denote by ε\varepsilon), and he performed the following operations: $\varepsilon \to \color{red}{\texttt{1}}\texttt{}\color{red}{\texttt{0}} \to \color{red}{\texttt{0}}\texttt{10}\color{red}{\texttt{1}} \to \color{red}{\texttt{1}}\texttt{0101}\color{red}{\texttt{0}}$.

In the fifth test case, the shortest possible string Timur started with is 101, and he performed the following operations: 101} \to \color{red}{\texttt{0}}\texttt{101}\color{red}{\texttt{1}} \to \color{red}{\texttt{1}}\texttt{01011}\color{red}{\texttt{0}.

Samples

9
3
100
4
0111
5
10101
6
101010
7
1010110
1
1
2
10
2
11
10
1011011010
1
2
5
0
3
1
0
2
4

在线编程 IDE

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