#P1559C. Mocha and Hiking

Mocha and Hiking

Mocha and Hiking

题面翻译

给定一张 nn 个点 2n12n-1 条边的图,其中边分两种:

  • 对于所有 1in11\le i\le n - 1,存在一条由节点 ii 连向节点 i+1i+1 的边;
  • 对于所有 1in1\le i\le n,存在一条由节点 ii 连向节点 n+1n+1 的边或者一条由节点 n+1n+1 连向节点 ii 的边。

请你输出一种从任意一个点开始遍历所有点的方案,若无法遍历则输出 1-1

译者 @ajthreac

题目描述

The city where Mocha lives in is called Zhijiang. There are n+1 n+1 villages and 2n1 2n-1 directed roads in this city.

There are two kinds of roads:

  • n1 n-1 roads are from village i i to village i+1 i+1 , for all 1in1 1\leq i \leq n-1 .
  • n n roads can be described by a sequence a1,,an a_1,\ldots,a_n . If ai=0 a_i=0 , the i i -th of these roads goes from village i i to village n+1 n+1 , otherwise it goes from village n+1 n+1 to village i i , for all 1in 1\leq i\leq n .

Mocha plans to go hiking with Taki this weekend. To avoid the trip being boring, they plan to go through every village exactly once. They can start and finish at any villages. Can you help them to draw up a plan?

输入格式

Each test contains multiple test cases.

The first line contains a single integer t t ( 1t20 1 \le t \le 20 ) — the number of test cases. Each test case consists of two lines.

The first line of each test case contains a single integer n n ( 1n104 1 \le n \le 10^4 ) — indicates that the number of villages is n+1 n+1 .

The second line of each test case contains n n integers a1,a2,,an a_1, a_2, \ldots, a_n ( 0ai1 0 \le a_i \le 1 ). If ai=0 a_i=0 , it means that there is a road from village i i to village n+1 n+1 . If ai=1 a_i=1 , it means that there is a road from village n+1 n+1 to village i i .

It is guaranteed that the sum of n n over all test cases does not exceed 104 10^4 .

输出格式

For each test case, print a line with n+1 n+1 integers, where the i i -th number is the i i -th village they will go through. If the answer doesn't exist, print 1 -1 .

If there are multiple correct answers, you can print any one of them.

样例 #1

样例输入 #1

2
3
0 1 0
3
1 1 0

样例输出 #1

1 4 2 3 
4 1 2 3

提示

In the first test case, the city looks like the following graph:

So all possible answers are (1423) (1 \to 4 \to 2 \to 3) , (1234) (1 \to 2 \to 3 \to 4) .

In the second test case, the city looks like the following graph:

So all possible answers are (4123) (4 \to 1 \to 2 \to 3) , (1234) (1 \to 2 \to 3 \to 4) , (3412) (3 \to 4 \to 1 \to 2) , (2341) (2 \to 3 \to 4 \to 1) .