A14564 | Mocha and Hiking
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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\leq i \leq n-1$ .
- $n$ roads can be described by a sequence $a_1,\ldots,a_n$ . If $a_i=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\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?
There are two kinds of roads:
- $n-1$ roads are from village $i$ to village $i+1$ , for all $1\leq i \leq n-1$ .
- $n$ roads can be described by a sequence $a_1,\ldots,a_n$ . If $a_i=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\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$ ( $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$ ( $1 \le n \le 10^4$ ) — indicates that the number of villages is $n+1$ .
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \le a_i \le 1$ ). If $a_i=0$ , it means that there is a road from village $i$ to village $n+1$ . If $a_i=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 $10^4$ .
The first line contains a single integer $t$ ( $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$ ( $1 \le n \le 10^4$ ) — indicates that the number of villages is $n+1$ .
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \le a_i \le 1$ ). If $a_i=0$ , it means that there is a road from village $i$ to village $n+1$ . If $a_i=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 $10^4$ .
输出格式
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.
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 \to 4 \to 2 \to 3)$ , $(1 \to 2 \to 3 \to 4)$ .
In the second test case, the city looks like the following graph:

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

So all possible answers are $(1 \to 4 \to 2 \to 3)$ , $(1 \to 2 \to 3 \to 4)$ .
In the second test case, the city looks like the following graph:

So all possible answers are $(4 \to 1 \to 2 \to 3)$ , $(1 \to 2 \to 3 \to 4)$ , $(3 \to 4 \to 1 \to 2)$ , $(2 \to 3 \to 4 \to 1)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted