The game “The Pilots Brothers: following the stripy elephant” has a quest where a player needs to open a refrigerator.
There are 16 handles on the refrigerator door. Every handle can be in one of two states: open or closed. The refrigerator is open only when all handles are open. The handles are rePResented as a matrix 4х4. You can change the state of a handle in any location [i, j] (1 ≤ i, j ≤ 4). However, this also changes states of all handles in row i and all handles in column j.
The task is to determine the minimum number of handle switching necessary to open the refrigerator.
The input contains four lines. Each of the four lines contains four characters describing the initial state of appropriate handles. A symbol “+” means that the handle is in closed state, whereas the symbol “?” means “open”. At least one of the handles is initially closed.
The first line of the input contains N – the minimum number of switching. The rest N lines describe switching sequence. Each of the lines contains a row number and a column number of the matrix separated by one or more spaces. If there are several solutions, you may give any one of them.
把題目中給出的狀態(tài)圖,全部翻轉成 - 的狀態(tài)
每次翻轉一個,它所在的行和列都要進行翻轉
問最小翻轉次數(shù),同時輸出翻轉路徑。
和 POJ 1753 一樣,只不過在dfs的時候用一個棧或者雙端隊列存儲當前的路徑,找到答案之后輸出。
新聞熱點
疑難解答