Problem K
Team Change
Mr. Smith, the physical education teacher at Rocky Mountain High School, likes to take a hands-off approach to teaching gym class. What does that mean? A lot of dodgeball!
For the last few months, the students have been split into the same two teams. But now some students are asking for a change.
Some students want to be assigned to a specific team. Also, certain pairs of students that are currently on opposite teams have become rivals and are unwilling to be on each other’s team.
Since Mr. Smith does not want to be complacent he has decided to shuffle the teams. He realizes it is not necessarily possible to form new teams satisfying both of the above constraints. To solve this, he will make some students sit the next game out.
Your job is to help Mr. Smith form the new teams that satisfy the above constraints such that the number of students who must sit out is minimum. Note that the teams do not need to have the same number of players nor does a team have to have any players at all.
Input
The first line of input contains two integers
The next line contains a string which describes the current
teams. The string has length
The next line contains a string which describes the
students’ requested teams. The string has length
The next
Output
Display a valid team formation with the minimum number of
students sitting out. If the
If there are multiple possible solutions, display any of them.
Sample Input 1 | Sample Output 1 |
---|---|
5 4 AAABB ??AAA 1 4 2 4 3 4 3 5 |
BBXAA |
Sample Input 2 | Sample Output 2 |
---|---|
2 1 AB AA 1 2 |
XA |
Sample Input 3 | Sample Output 3 |
---|---|
8 8 ABBABAAA ?B?ABBAB 1 2 4 3 6 5 4 5 1 5 2 8 3 7 2 4 |
BXBAXBAB |