CF1680C.Binary String
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a string s consisting of characters 0 and/or 1.
You have to remove several (possibly zero) characters from the beginning of the string, and then several (possibly zero) characters from the end of the string. The string may become empty after the removals. The cost of the removal is the maximum of the following two values:
- the number of characters 0 left in the string;
- the number of characters 1 removed from the string.
What is the minimum cost of removal you can achieve?
输入格式
The first line contains one integer t ( 1≤t≤104 ) — the number of test cases.
Each test case consists of one line containing the string s ( 1≤∣s∣≤2⋅105 ), consisting of characters 0 and/or 1.
The total length of strings s in all test cases does not exceed 2⋅105 .
输出格式
For each test case, print one integer — the minimum cost of removal you can achieve.
输入输出样例
输入#1
5 101110110 1001001001001 0000111111 00000 1111
输出#1
1 3 0 0 0
说明/提示
Consider the test cases of the example:
- in the first test case, it's possible to remove two characters from the beginning and one character from the end. Only one 1 is deleted, only one 0 remains, so the cost is 1 ;
- in the second test case, it's possible to remove three characters from the beginning and six characters from the end. Two characters 0 remain, three characters 1 are deleted, so the cost is 3 ;
- in the third test case, it's optimal to remove four characters from the beginning;
- in the fourth test case, it's optimal to remove the whole string;
- in the fifth test case, it's optimal to leave the string as it is.