CF1399D.Binary String To Subsequences

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a binary string ss consisting of nn zeros and ones.

Your task is to divide the given string into the minimum number of subsequences in such a way that each character of the string belongs to exactly one subsequence and each subsequence looks like "010101 ..." or "101010 ..." (i.e. the subsequence should not contain two adjacent zeros or ones).

Recall that a subsequence is a sequence that can be derived from the given sequence by deleting zero or more elements without changing the order of the remaining elements. For example, subsequences of "1011101" are "0", "1", "11111", "0111", "101", "1001", but not "000", "101010" and "11100".

You have to answer tt independent test cases.

输入格式

The first line of the input contains one integer tt ( 1t21041 \le t \le 2 \cdot 10^4 ) — the number of test cases. Then tt test cases follow.

The first line of the test case contains one integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the length of ss . The second line of the test case contains nn characters '0' and '1' — the string ss .

It is guaranteed that the sum of nn does not exceed 21052 \cdot 10^5 ( n2105\sum n \le 2 \cdot 10^5 ).

输出格式

For each test case, print the answer: in the first line print one integer kk ( 1kn1 \le k \le n ) — the minimum number of subsequences you can divide the string ss to. In the second line print nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1aik1 \le a_i \le k ), where aia_i is the number of subsequence the ii -th character of ss belongs to.

If there are several answers, you can print any.

输入输出样例

  • 输入#1

    4
    4
    0011
    6
    111111
    5
    10101
    8
    01010000

    输出#1

    2
    1 2 2 1 
    6
    1 2 3 4 5 6 
    1
    1 1 1 1 1 
    4
    1 1 1 1 1 2 3 4
首页