#P15683. [ICPC 2023 Jakarta R] Button Pressing
[ICPC 2023 Jakarta R] Button Pressing
题目描述
You are given buttons (numbered from to ) and lamps (numbered from to ). Each lamp can either be on or off. Initially, lamp is on if , and off if .
Button is connected to lamp (if ) and lamp (if ). In one move, you can press a button only if lamp is on. When a button is pressed, the state of the lamps connected to this button is toggled. Formally, the lamps will be on if it was off previously, and the lamps will be off if it was on previously. Note that lamp is not connected to button , thus, the state of lamp does not change if button is pressed.
After zero or more moves, you want lamp to be on if , and off if . Determine if it is possible to achieve this task.
输入格式
This problem has multiple test cases. The first line consists of an integer ( ), which represents the number of test cases. Each test case consists of three lines.
The first line of each test case consists of an integer ( ). The sum of over all test cases does not exceed .
The second line of each test case consists of a string of length . Each character of can either be 0 or 1. The -th character represents the initial state of lamp .
The third line of each test case consists of a string of length . Each character of can either be 0 or 1. The -th character represents the desired final state of lamp .
输出格式
For each test case, output YES in a single line if the final state of all lamps can be reached after zero or more moves, or NO otherwise.
2
4
0101
0100
3
000
010
YES
NO
5
7
0101011
1111010
5
11111
00000
4
1101
1101
6
101010
100100
3
000
000
NO
NO
YES
YES
YES
提示
Explanation for the sample input/output #1
For the first test case, by pressing the buttons in sequence, the condition of the buttons changes as: $ 0101 \rightarrow 0111 \rightarrow 1101 \rightarrow 1111 \rightarrow 1010 \rightarrow 1110 \rightarrow 0100 $ .
For the second test case, you are unable to press any button, hence it is impossible to reach the final state.