#P9189. [USACO23OPEN] Custodial Cleanup G

[USACO23OPEN] Custodial Cleanup G

题目描述

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 NN stalls labeled 11 through NN and MM corridors that connect pairs of stalls to each other bidirectionally. The ii th stall is painted with color CiC_i and initially has a single key of color SiS_i in it. FJ will have to rearrange the keys to appease the cows and restore order to the stalls.

FJ starts out in stall 11 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 11 by moving through a corridor.
  • Enter a stall other than stall 11 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 iith stall requires that a single key of color FiF_i is in it. It is guaranteed that SS is a permutation of FF.

For TT different mootels, FJ starts in stall 11 and needs to place every key in its appropriate location, ending back in stall 11. For each of the TT mootels, please answer if it is possible to do this.

输入格式

The first line contains TT, 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 NN and MM.

The second line of each test case contains NN integers. The ii-th integer on this line CiC_i means that stall ii has color CiC_i.

The third line of each test case contains NN integers. The ii-th integer on this line SiS_i means that stall ii initially holds a key of color SiS_i.

The fourth line of each test case contains NN integers. The ii-th integer on this line FiF_i means that stall ii needs to have a key of color FiF_i in it.

The next MM lines of each test case follow. The ii-th of these lines contains two distinct integers uiu_i and viv_i. This represents that a corridor exists between stalls uiu_i and viv_i. No corridors are repeated.

输出格式

For each mootel, output YES on a new line if there exists a way for FJ to return a key of color FiF_i to each stall ii and end back in stall 11. Otherwise, output NO on a new line.

题目大意

题目描述

由于他的 mootels(类似于汽车旅馆,但住客是牛而不是人)结构混乱,农夫 John 决定担任 mootel 的管理员,以恢复牛栏的秩序。

每个 mootel 有 NN 个牛栏,编号为 11NN,以及 MM 条双向连接的走廊。第 ii 个牛栏被涂成颜色 CiC_i,并且最初里面有一把颜色为 SiS_i 的钥匙。FJ 需要重新安排钥匙的位置,以安抚奶牛并恢复牛栏的秩序。

FJ 从牛栏 11 开始,手中没有任何钥匙,并且可以重复执行以下操作之一:

  • 拾取当前所在牛栏中的一把钥匙。FJ 可以同时持有多个钥匙。
  • 将手中持有的一把钥匙放入当前所在的牛栏。一个牛栏可以同时存放多把钥匙。
  • 通过走廊进入牛栏 11
  • 通过走廊进入牛栏 11 以外的其他牛栏。只有当 FJ 当前持有的钥匙颜色与目标牛栏的颜色相同时,才能执行此操作。

不幸的是,钥匙似乎并未放在它们应有的位置。为了恢复 FJ 的 mootel 的秩序,第 ii 个牛栏需要有一把颜色为 FiF_i 的钥匙。保证 SSFF 的一个排列。

对于 TT 个不同的 mootel,FJ 从牛栏 11 开始,需要将每把钥匙放到其应有的位置,并最终回到牛栏 11。对于每个 mootel,请回答是否可能完成这一任务。

输入格式

第一行包含 TT,表示 mootel 的数量(测试用例的数量)。

每个测试用例前有一个空行。然后,每个测试用例的第一行包含两个整数 NNMM

每个测试用例的第二行包含 NN 个整数。第 ii 个整数 CiC_i 表示牛栏 ii 的颜色为 CiC_i

每个测试用例的第三行包含 NN 个整数。第 ii 个整数 SiS_i 表示牛栏 ii 最初有一把颜色为 SiS_i 的钥匙。

每个测试用例的第四行包含 NN 个整数。第 ii 个整数 FiF_i 表示牛栏 ii 需要有一把颜色为 FiF_i 的钥匙。

每个测试用例接下来的 MM 行,每行包含两个不同的整数 uiu_iviv_i。这表示牛栏 uiu_iviv_i 之间有一条走廊。没有重复的走廊。

提示

对于第一个样例的第一个测试样例,以下是一种可能的操作序列。

当前牛栏:1。持有的钥匙:[]。牛栏中的钥匙:[3, 4, 3, 4, 2] (拾取颜色为 3 的钥匙)
当前牛栏:1。持有的钥匙:[3]。牛栏中的钥匙:[x, 4, 3, 4, 2] (从牛栏 1 移动到牛栏 2,允许,因为持有颜色为 C_2=3 的钥匙)
当前牛栏:2。持有的钥匙:[3]。牛栏中的钥匙:[x, 4, 3, 4, 2] (拾取颜色为 4 的钥匙)
当前牛栏:2。持有的钥匙:[3, 4]。牛栏中的钥匙:[x, x, 3, 4, 2] (从牛栏 2 移动到牛栏 1 到牛栏 4 到牛栏 5,允许,因为持有颜色为 C_4=4 和 C_5=3 的钥匙)
当前牛栏:5。持有的钥匙:[3, 4]。牛栏中的钥匙:[x, x, 3, 4, 2] (拾取颜色为 2 的钥匙并放下颜色为 3 的钥匙)
当前牛栏:5。持有的钥匙:[2, 4]。牛栏中的钥匙:[x, x, 3, 4, 3] (从牛栏 5 移动到牛栏 4 到牛栏 1 到牛栏 3,允许,因为持有颜色为 C_4=4 和 C_3=2 的钥匙)
当前牛栏:3。持有的钥匙:[2, 4]。牛栏中的钥匙:[x, x, 3, 4, 3] (拾取颜色为 3 的钥匙并放下颜色为 4 的钥匙)
当前牛栏:3。持有的钥匙:[2, 3]。牛栏中的钥匙:[x, x, 4, 4, 3] (从牛栏 3 移动到牛栏 2 并放下颜色为 3 的钥匙)
当前牛栏:2。持有的钥匙:[2]。牛栏中的钥匙:[x, 3, 4, 4, 3] (从牛栏 2 移动到牛栏 1 并放下颜色为 2 的钥匙)
当前牛栏:1。持有的钥匙:[]。牛栏中的钥匙:[2, 3, 4, 4, 3]

对于第一个样例的第二个测试用例,不存在一种方式让 FJ 将颜色为 FiF_i 的钥匙放回每个牛栏 ii 并最终回到牛栏 11

0M1050 \le M \le 10^51Ci,Si,Fi,ui,viN1051 \le C_i, S_i, F_i, u_i, v_i \le N \le 10^5
1T1001 \le T \le 1001N1051 \le \sum N \le 10^51M21051 \le \sum M \le 2 \cdot 10^5

  • 测试用例 3-6 满足 N,M8N, M \le 8
  • 测试用例 7-10 满足 Ci=FiC_i = F_i
  • 测试用例 11-18 没有额外限制。
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

YES
NO

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

YES
YES
NO
YES
NO

提示

For the first test case of the first sample, 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 of the first sample, there exists no way for FJ to return a key of color FiF_i to each stall ii and end back at stall 11.

0M1050 \le M \le 10^5, 1Ci,Si,Fi,ui,viN1051 \le C_i, S_i, F_i, u_i, v_i \le N \le 10^5.
1T1001 \le T \le 100, 1N1051 \le \sum N \le 10^5, 1M21051 \le \sum M \le 2\cdot 10^5.

  • Test cases 3-6 satisfy N,M8N,M\le 8.
  • Test cases 7-10 satisfy Ci=FiC_i=F_i.
  • Test cases 11-18 satisfy no additional constraints.