CF1923A.Moving Chips

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Moving Chips

There is a ribbon divided into nn cells, numbered from 11 to nn from left to right. Each cell either contains a chip or is free.

You can perform the following operation any number of times (possibly zero): choose a chip and move it to the closest free cell to the left. You can choose any chip that you want, provided that there is at least one free cell to the left of it. When you move the chip, the cell where it was before the operation becomes free.

Your goal is to move the chips in such a way that they form a single block, without any free cells between them. What is the minimum number of operations you have to perform?

Input

The first line contains one integer tt (1t10001 \le t \le 1000) — the number of test cases.

Each test case consists of two lines:

  • the first line contains one integer nn (2n502 \le n \le 50) — the number of cells;
  • the second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n (0ai10 \le a_i \le 1); ai=0a_i = 0 means that the ii-th cell is free; ai=1a_i = 1 means that the ii-th cell contains a chip.

Additional constraint on the input: in each test case, at least one cell contains a chip.

Output

For each test case, print one integer — the minimum number of operations you have to perform so that all chips form a single block without any free cells between them.

Note

In the first example, you can perform the operation on the chip in the 77-th cell. The closest free cell to the left is the 55-th cell, so it moves there. After that, all chips form a single block.

In the second example, all chips are already in a single block. Same for the third example.

Samples

5
8
0 1 1 1 0 1 1 0
6
0 1 0 0 0 0
6
1 1 1 1 1 1
5
1 0 1 0 1
9
0 1 1 0 0 0 1 1 0
1
0
0
2
3

在线编程 IDE

建议全屏模式获得最佳体验