题库练习 Swap and Delete
← 上一题 下一题 →

A16435 | Swap and Delete

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given a binary string $s$ (a string consisting only of 0-s and 1-s).

You can perform two types of operations on $s$ :

1. delete one character from $s$ . This operation costs $1$ coin;
2. swap any pair of characters in $s$ . This operation is free (costs $0$ coins).

You can perform these operations any number of times and in any order.

Let's name a string you've got after performing operations above as $t$ . The string $t$ is good if for each $i$ from $1$ to $|t|$ $t_i \neq s_i$ ( $|t|$ is the length of the string $t$ ). The empty string is always good. Note that you are comparing the resulting string $t$ with the initial string $s$ .

What is the minimum total cost to make the string $t$ good?

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases. Then $t$ test cases follow.

The only line of each test case contains a binary string $s$ ( $1 \le |s| \le 2 \cdot 10^5$ ; $s_i \in \{$ 0, 1 $\}$ ) — the initial string, consisting of characters 0 and/or 1.

Additional constraint on the input: the total length of all strings $s$ doesn't exceed $2 \cdot 10^5$ .

输出格式

For each test case, print one integer — the minimum total cost to make string $t$ good.

输入输出样例

输入 #1
4
0
011
0101110001
111100
输出 #1
1
1
0
4
C++ 编辑器
输入
输出