A16449 | Lights
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
In the end of the day, Anna needs to turn off the lights in the office. There are $n$ lights and $n$ light switches, but their operation scheme is really strange. The switch $i$ changes the state of light $i$ , but it also changes the state of some other light $a_i$ (change the state means that if the light was on, it goes off and vice versa).
Help Anna to turn all the lights off using minimal number of switches, or say it is impossible.
Help Anna to turn all the lights off using minimal number of switches, or say it is impossible.
输入格式
The first line of input contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases. Descriptions of test cases follow.
The first line of each test case contains the integer $n$ ( $2 \le n \le 10^5$ ) — the number of lights.
The second line of each test case contains the string of $n$ characters, the initial state of the lights. Character "0" means that the corresponding light is off, and "1" means that it is on.
The third line of each test case contains $n$ integers $a_i$ ( $1 \le a_i \le n$ , $a_i \neq i$ ) — the switch $i$ changes the states of light $i$ and light $a_i$ .
It is guaranteed that sum of $n$ over all test cases does not exceed $2 \cdot 10^5$
The first line of each test case contains the integer $n$ ( $2 \le n \le 10^5$ ) — the number of lights.
The second line of each test case contains the string of $n$ characters, the initial state of the lights. Character "0" means that the corresponding light is off, and "1" means that it is on.
The third line of each test case contains $n$ integers $a_i$ ( $1 \le a_i \le n$ , $a_i \neq i$ ) — the switch $i$ changes the states of light $i$ and light $a_i$ .
It is guaranteed that sum of $n$ over all test cases does not exceed $2 \cdot 10^5$
输出格式
For each test case output the integer $k$ , the minimal number of switches to use, then in the separate line output the list of $k$ switches.
If it is impossible to turn off all the lights, output single integer $-1$ .
If it is impossible to turn off all the lights, output single integer $-1$ .
输入输出样例
输入 #1
8 5 11101 4 3 4 2 2 2 10 2 1 10 0000000011 9 10 10 7 10 9 9 9 10 2 10 1000111101 9 3 8 9 2 1 3 7 2 7 10 0001101010 5 7 6 10 8 3 6 6 2 2 10 0101100010 8 7 7 9 9 4 1 4 2 7 10 1010111010 7 9 10 7 7 2 8 6 10 4 10 1110000001 3 10 10 1 10 8 6 3 2 1
输出 #1
3 1 5 3 -1 1 9 5 5 6 10 2 3 6 4 9 5 10 8 7 3 5 4 9 6 1 3 5 9 7 8 2 2 1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted