Due to the disorganized structure of his mootels (much like motels but with bovine rather than human guests), Farmer John has decided to take up the role of the mootel custodian to restore order to the stalls.
Each mootel has N stalls labeled 1 through N (1≤N≤105) and M (0≤M≤105) corridors that connect pairs of stalls to each other bidirectionally. The ith stall is painted with color Ci and initially has a single key of color Si in it. FJ will have to rearrange the keys to appease the cows and restore order to the stalls.
FJ starts out in stall 1 without holding any keys and is allowed to repeatedly do one of the following moves:
Pick up a key in the stall he is currently in. FJ can hold multiple keys at a time.
Place down a key he is holding into the stall he is currently in. A stall may hold multiple keys at a time.
Enter stall 1 by moving through a corridor.
Enter a stall other than stall 1 by moving through a corridor. He can only do this if he currently holds a key that is the same color as the stall he is entering.
Unfortunately, it seems that the keys are not in their intended locations. To restore order to FJ's mootel, the ith stall requires that a single key of color Fi is in it. It is guaranteed that S is a permutation of F.
For T different mootels (1≤T≤100), FJ starts in stall 1 and needs to place every key in its appropriate location, ending back in stall 1. For each of the T mootels, please answer if it is possible to do this.
INPUT FORMAT (input arrives from the terminal / stdin):
The first line contains T, the number of mootels (test cases).
Each test case will be preceded by a blank line. Then, the first line of each test case contains two integers N and M.
The second line of each test case contains N integers. The i-th integer on this line, Ci, means that stall i has color Ci (1≤Ci≤N).
The third line of each test case contains N integers. The i-th integer on this line, Si, means that stall i initially holds a key of color Si (1≤Si≤N).
The fourth line of each test case contains N integers. The i-th integer on this line, Fi, means that stall i needs to have a key of color Fi in it (1≤Fi≤N).
The next M lines of each test case follow. The i-th of these lines contains two distinct integers, ui and vi (1≤ui,vi≤N). This represents that a corridor exists between stalls ui and vi. No corridors are repeated.
The sum of N over all mootels will not exceed 105, and the sum of M over all mootels will not exceed 2⋅105.
OUTPUT FORMAT (print output to the terminal / stdout):
For each mootel, output YES on a new line if there exists a way for FJ to return a key of color Fi to each stall i and end back in stall 1. Otherwise, output NO on a new line.
SAMPLE INPUT:
2
5 5
4 3 2 4 3
3 4 3 4 2
2 3 4 4 3
1 2
2 3
3 1
4 1
4 5
4 3
3 2 4 1
2 3 4 4
4 2 3 4
4 2
4 1
4 3
SAMPLE OUTPUT:
YES
NO
For the first test case, here is a possible sequence of moves:
Current stall: 1. Keys held: []. Keys in stalls: [3, 4, 3, 4, 2]
(pick up key of color 3)
Current stall: 1. Keys held: [3]. Keys in stalls: [x, 4, 3, 4, 2]
(move from stall 1 to 2, allowed since we have a key of color C_2=3)
Current stall: 2. Keys held: [3]. Keys in stalls: [x, 4, 3, 4, 2]
(pick up key of color 4)
Current stall: 2. Keys held: [3, 4]. Keys in stalls: [x, x, 3, 4, 2]
(move from stall 2 to 1 to 4 to 5, allowed since we have keys of colors C_4=4 and C_5=3)
Current stall: 5. Keys held: [3, 4]. Keys in stalls: [x, x, 3, 4, 2]
(pick up key of color 2 and place key of color 3)
Current stall: 5. Keys held: [2, 4]. Keys in stalls: [x, x, 3, 4, 3]
(move from stall 5 to 4 to 1 to 3, allowed since we have keys of colors C_4=4 and C_3=2)
Current stall: 3. Keys held: [2, 4]. Keys in stalls: [x, x, 3, 4, 3]
(pick up key of color 3 and place key of color 4)
Current stall: 3. Keys held: [2, 3]. Keys in stalls: [x, x, 4, 4, 3]
(move from stall 3 to stall 2 and place key of color 3)
Current stall: 2. Keys held: [2]. Keys in stalls: [x, 3, 4, 4, 3]
(move from stall 2 to stall 1 and place key of color 2)
Current stall: 1. Keys held: []. Keys in stalls: [2, 3, 4, 4, 3]
For the second test case, there exists no way for FJ to return a key of color Fi to each stall i and end back at stall 1.
SAMPLE INPUT:
5
2 0
1 2
2 2
2 2
2 1
1 1
2 1
2 1
1 2
2 1
1 1
2 1
1 2
1 2
2 1
1 1
1 2
2 1
1 2
5 4
1 2 3 4 4
2 3 5 4 2
5 3 2 4 2
1 2
1 3
1 4
4 5
SAMPLE OUTPUT:
YES
YES
NO
YES
NO
SCORING:
Test cases 3-6 satisfy N,M≤8.
Test cases 7-10 satisfy Ci=Fi.
Test cases 11-18 satisfy no additional constraints.
Problem credits: Eric Yachbes