#P13038. [GCJ 2021 #2] Retiling
[GCJ 2021 #2] Retiling
题目描述
Cody-Jamal's latest artistic installment is a tiled kitchen floor that can be retiled to different patterns. The floor consists of a matrix of rows and columns of square tiles. Each tile is reversible, one side is magenta and the other one is green.
To retile the kitchen, there are two allowed operations:
- flip a tile, changing its visible color from magenta to green, or vice versa, and
- swap two adjacent tiles (horizontally or vertically, but not diagonally), without flipping either.
Viewing Cody-Jamal's artistic floor is free, but interacting with it is not. Performing a single flip operation costs coins, and performing a single swap operation costs coins.
You can see the current state of the floor and want to turn it into a particular pattern. What is the minimum amount of coins you need to spend to achieve your goal?
输入格式
The first line of the input gives the number of test cases, . test cases follow. The first line of a test case contains 4 integers: , , and , the number of rows and columns of the floor, the cost in coins of flipping and the cost in coins of swapping, respectively. Then, lines follow. The first lines contain characters each. The -th character of the -th of these lines represents the current state of the tile in the -th row and -th column. The character is if the currently visible side is magenta and otherwise. The last lines also contain characters each. The -th character of the -th of these lines represents the color you want for the tile in the -th row and -th column, using the same character code as for the current state.
输出格式
For each test case, output one line containing Case #x: y
, where is the test case number (starting from 1) and is the minimum amount of coins you need to spend to perform operations that allow you to change the tile colors from their current state to your intended one.
2
2 4 1 1
MGMG
MMMG
GMGM
MMMM
3 3 1 1
MGG
GMG
MMM
MMM
MGM
MMG
Case #1: 3
Case #2: 4
1
1 5 1000 1
MGGGG
GGGMM
Case #1: 1003
提示
Sample Explanation
In Sample Case #1, there are 5 tiles that have a different color between the current and the desired states of the floor. Since each operation can change at most 2 tiles, at least 3 operations, costing 3 coins, are needed. One way to do it with exactly 3 coins is:
- Swap the leftmost two tiles in the top row.
- Swap the rightmost two tiles in the top row.
- Flip the bottom right corner tile.
The picture below illustrates the states the floor goes through. The highlighted tile or tiles in each state are the ones being changed by the operation.
In Sample Case #2, there are 6 tiles that need changing. However, since only swaps can change two tiles at a time, solving it with 3 operations would require all of them to be swaps. There is no way to involve all 6 tiles in a single swap each, so we need at least 4 operations. One way to use exactly 4 operations is:
- Swap the topmost two tiles in the middle column.
- Flip the top right corner tile.
- Swap the bottommost two tiles in the rightmost column.
- Flip the middle tile of the leftmost column.
The picture below illustrates the states the floor goes through.
Sample Test Set 2 fits the limits of Test Set 2. It will not be run against your submitted solutions.
In the Sample Case for Test Set 2, flips are so expensive that we want to avoid them at all costs. We need at least one since our desired floor state has more magenta tiles than the current one, and swaps do not change that amount. We can do it optimally with just one flip like this:
- Swap the leftmost two tiles.
- Flip the rightmost tile.
- Swap the second and third tiles from the left.
- Swap the third and fourth tiles from the left.
The picture below illustrates all the states the floor goes through.
Limits
- .
- .
- .
Test Set 1 (11 Pts, Visible Verdict)
- .
- .
Test Set 2 (23 Pts, Hidden Verdict)
- .
- .