CF1566B.MIN-MEX Cut

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

MIN-MEX Cut

A binary string is a string that consists of characters 00 and 11.

Let MEX\operatorname{MEX} of a binary string be the smallest digit among 00, 11, or 22 that does not occur in the string. For example, MEX\operatorname{MEX} of 001011001011 is 22, because 00 and 11 occur in the string at least once, MEX\operatorname{MEX} of 11111111 is 00, because 00 and 22 do not occur in the string and 0<20 \lt 2.

A binary string ss is given. You should cut it into any number of substrings such that each character is in exactly one substring. It is possible to cut the string into a single substring — the whole string.

A string aa is a substring of a string bb if aa can be obtained from bb by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.

What is the minimal sum of MEX\operatorname{MEX} of all substrings pieces can be?

Input

The input consists of multiple test cases. The first line contains a single integer tt (1t1041 \le t \le 10^4) — the number of test cases. Description of the test cases follows.

Each test case contains a single binary string ss (1s1051 \le |s| \le 10^5).

It's guaranteed that the sum of lengths of ss over all test cases does not exceed 10510^5.

Output

For each test case print a single integer — the minimal sum of MEX\operatorname{MEX} of all substrings that it is possible to get by cutting ss optimally.

Note

In the first test case the minimal sum is $\operatorname{MEX}(0) + \operatorname{MEX}(1) = 1 + 0 = 1$.

In the second test case the minimal sum is MEX(1111)=0\operatorname{MEX}(1111) = 0.

In the third test case the minimal sum is MEX(01100)=2\operatorname{MEX}(01100) = 2.

Samples

6
01
1111
01100
101
0000
01010
1
0
2
1
1
2

在线编程 IDE

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