#P12301. [ICPC 2022/2023 WF] Turning Red
[ICPC 2022/2023 WF] Turning Red
题目描述
Mei's parents have spent the last year remodeling their house, but their lighting system is quite complex! Each room in the house has an LED light, which can be set to red, green, or blue, as seen in Figure G.1.

Figure G.1: The initial state of the lights in Sample Input 1. Buttons and wires not shown.
Throughout the house are various buttons which are each connected to one or more lights. When a button is pressed, any red lights connected to that button become green, any green lights connected to that button become blue, and any blue lights connected to that button become red. Each button can be pressed multiple times. Because the house was built prior to the invention of crossbar wiring, each light is controlled by at most two buttons.
Mei's favorite color is red, so she wants to turn all of the lights red. Her parents, fearing the buttons will wear out, have asked her to minimize the total number of button presses.
输入格式
The first line of input contains two positive integers and , where () is the number of lights and () is the number of buttons. The second line of input is a string of characters, all either R, G, or B, where the character is the initial color of the light. The next lines describe the buttons. Each of these lines begins with an integer (), the number of lights controlled by this button. Then distinct integers follow, the lights controlled by this button. The lights are indexed from to , inclusive. Each light appears at most twice across all buttons.
输出格式
Output the minimum number of button presses Mei needs to turn all the lights red. If it is impossible for Mei to turn all of the lights red, output impossible.
8 6
GBRBRRRG
2 1 4
1 2
4 4 5 6 7
3 5 6 7
1 8
1 8
8
4 3
RGBR
2 1 2
2 2 3
2 3 4
impossible
4 4
GBRG
2 1 2
2 2 3
2 3 4
1 4
6
3 3
RGB
1 1
1 2
1 3
3