CF1559C.Mocha and Hiking
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The city where Mocha lives in is called Zhijiang. There are n+1 villages and 2n−1 directed roads in this city.
There are two kinds of roads:
- n−1 roads are from village i to village i+1 , for all 1≤i≤n−1 .
- n roads can be described by a sequence a1,…,an . If ai=0 , the i -th of these roads goes from village i to village n+1 , otherwise it goes from village n+1 to village i , for all 1≤i≤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 ( 1≤t≤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 ( 1≤n≤104 ) — indicates that the number of villages is n+1 .
The second line of each test case contains n integers a1,a2,…,an ( 0≤ai≤1 ). If ai=0 , it means that there is a road from village i to village n+1 . If ai=1 , it means that there is a road from village n+1 to village i .
It is guaranteed that the sum of n over all test cases does not exceed 104 .
输出格式
For each test case, print a line with n+1 integers, where the i -th number is the i -th village they will go through. If the answer doesn't exist, print −1 .
If there are multiple correct answers, you can print any one of them.
输入输出样例
输入#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 (1→4→2→3) , (1→2→3→4) .
In the second test case, the city looks like the following graph:
So all possible answers are (4→1→2→3) , (1→2→3→4) , (3→4→1→2) , (2→3→4→1) .