题库练习 Haunted House
← 上一题 下一题 →

A16169 | Haunted House

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

题目描述

You are given a number in binary representation consisting of exactly $n$ bits, possibly, with leading zeroes. For example, for $n = 5$ the number $6$ will be given as $00110$ , and for $n = 4$ the number $9$ will be given as $1001$ .

Let's fix some integer $i$ such that $1 \le i \le n$ . In one operation you can swap any two adjacent bits in the binary representation. Your goal is to find the smallest number of operations you are required to perform to make the number divisible by $2^i$ , or say that it is impossible.

Please note that for each $1 \le i \le n$ you are solving the problem independently.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10^4$ ). The description of the test cases follows.

The first line of each test case contains one integer $n$ ( $1 \le n \le 10^5$ ) — the length of the binary representation of the number.

The second line of each test case contains a string of length $n$ , consisting of $0$ and $1$ , — the binary representation of the number.

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

输出格式

For each test case, for each $1 \le i \le n$ output the smallest number of operations required to make the number divisible by $2^i$ , or output $-1$ if it is impossible.

输入输出样例

输入 #1
6
1
1
2
01
3
010
5
10101
7
0000111
12
001011000110
输出 #1
-1 
1 -1 
0 1 -1 
1 3 -1 -1 -1 
3 6 9 12 -1 -1 -1 
0 2 4 6 10 15 20 -1 -1 -1 -1 -1
C++ 编辑器
输入
输出