#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 ll and bb, where ll (1l21051 \le l \le 2\cdot 10^5) is the number of lights and bb (0b2l0 \le b \le 2\cdot l) is the number of buttons. The second line of input is a string of ll characters, all either R, G, or B, where the ithi^\text{th} character is the initial color of the ithi^\text{th} light. The next bb lines describe the buttons. Each of these lines begins with an integer kk (1kl1 \le k \le l), the number of lights controlled by this button. Then kk distinct integers follow, the lights controlled by this button. The lights are indexed from 11 to ll, 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