CF1732B.Ugu

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A binary string is a string consisting only of the characters 0 and 1. You are given a binary string s1s2sns_1 s_2 \ldots s_n . It is necessary to make this string non-decreasing in the least number of operations. In other words, each character should be not less than the previous. In one operation, you can do the following:

  • Select an arbitrary index 1in1 \leq i \leq n in the string;
  • For all jij \geq i , change the value in the jj -th position to the opposite, that is, if sj=1s_j = 1 , then make sj=0s_j = 0 , and vice versa.

What is the minimum number of operations needed to make the string non-decreasing?

输入格式

Each test consists of multiple test cases. The first line contains an integer tt ( 1t1041 \leq t \leq 10^4 ) — the number of test cases. The description of test cases follows.

The first line of each test cases a single integer nn ( 1n1051 \leq n \leq 10^5 ) — the length of the string.

The second line of each test case contains a binary string ss of length nn .

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output a single integer — the minimum number of operations that are needed to make the string non-decreasing.

输入输出样例

  • 输入#1

    8
    1
    1
    2
    10
    3
    101
    4
    1100
    5
    11001
    6
    100010
    10
    0000110000
    7
    0101010

    输出#1

    0
    1
    2
    1
    2
    3
    1
    5

说明/提示

In the first test case, the string is already non-decreasing.

In the second test case, you can select i=1i = 1 and then s=01s = \mathtt{01} .

In the third test case, you can select i=1i = 1 and get s=010s = \mathtt{010} , and then select i=2i = 2 . As a result, we get s=001s = \mathtt{001} , that is, a non-decreasing string.

In the sixth test case, you can select i=5i = 5 at the first iteration and get s=100001s = \mathtt{100001} . Then choose i=2i = 2 , then s=111110s = \mathtt{111110} . Then we select i=1i = 1 , getting the non-decreasing string s=000001s = \mathtt{000001} .

首页