HDU Problem - 3338 Kakuro Extension (最大流,建图)
題目鏈接
Problem Description
If you solved problem like this, forget it.Because you need to use a completely different algorithm to solve the following one.Kakuro puzzle is played on a grid of “black” and “white” cells. Apart from the top row and leftmost column which are entirely black, the grid has some amount of white cells which form “runs” and some amount of black cells. “Run” is a vertical or horizontal maximal one-lined block of adjacent white cells. Each row and column of the puzzle can contain more than one “run”. Every white cell belongs to exactly two runs — one horizontal and one vertical run. Each horizontal “run” always has a number in the black half-cell to its immediate left, and each vertical “run” always has a number in the black half-cell immediately above it. These numbers are located in “black” cells and are called “clues”.The rules of the puzzle are simple: 1.place a single digit from 1 to 9 in each “white” cell2.for all runs, the sum of all digits in a “run” must match the clue associated with the “run”Given the grid, your task is to find a solution for the puzzle. Picture of the first sample input Picture of the first sample output
Input
The first line of input contains two integers n and m (2 ≤ n,m ≤ 100) — the number of rows and columns correspondingly. Each of the next n lines contains descriptions of m cells. Each cell description is one of the following 7-character strings: …….— “white” cell;XXXXXXX— “black” cell with no clues;AAA\BBB— “black” cell with one or two clues. AAA is either a 3-digit clue for the corresponding vertical run, or XXX if there is no associated vertical run. BBB is either a 3-digit clue for the corresponding horizontal run, or XXX if there is no associated horizontal run.The first row and the first column of the grid will never have any white cells. The given grid will have at least one “white” cell.It is guaranteed that the given puzzle has at least one solution.
Output
Print n lines to the output with m cells in each line. For every “black” cell print ‘_’ (underscore), for every “white” cell print the corresponding digit from the solution. Delimit cells with a single space, so that each row consists of 2m-1 characters.If there are many solutions, you may output any of them.
Sample Input
6 6 XXXXXXX XXXXXXX 028\XXX 017\XXX 028\XXX XXXXXXX XXXXXXX 022\022 ....... ....... ....... 010\XXX XXX\034 ....... ....... ....... ....... ....... XXX\014 ....... ....... 016\013 ....... ....... XXX\022 ....... ....... ....... ....... XXXXXXX XXXXXXX XXX\016 ....... ....... XXXXXXX XXXXXXX 5 8 XXXXXXX 001\XXX 020\XXX 027\XXX 021\XXX 028\XXX 014\XXX 024\XXX XXX\035 ....... ....... ....... ....... ....... ....... ....... XXXXXXX 007\034 ....... ....... ....... ....... ....... ....... XXX\043 ....... ....... ....... ....... ....... ....... ....... XXX\030 ....... ....... ....... ....... ....... ....... XXXXXXXSample Output
_ _ _ _ _ _ _ _ 5 8 9 _ _ 7 6 9 8 4 _ 6 8 _ 7 6 _ 9 2 7 4 _ _ _ 7 9 _ _ _ _ _ _ _ _ _ _ _ 1 9 9 1 1 8 6 _ _ 1 7 7 9 1 9 _ 1 3 9 9 9 3 9 _ 6 7 2 4 9 2 _AC
- 根據(jù)游戲規(guī)則,每行每列的數(shù)字之和只受到相應(yīng)的數(shù)字要求,這樣可以用最大流建邊寫
- 建邊:
- 假設(shè)流量是從上流入,然后從左流出
- 如果只有下邊的數(shù)字,這個(gè)數(shù)字是它下面所有的白色格子的和,所以將這個(gè)格子和它下面所有的白格子建邊,權(quán)值為8(最大流的出的可能有0的流量),將這個(gè)格子和源點(diǎn)相連(默認(rèn)流量從上流入)權(quán)值為數(shù)字 - 下方白色格子的個(gè)數(shù)(因?yàn)槊總€(gè)白格子建邊的時(shí)候都減1)
- 同理只有右邊的數(shù)字,就讓右邊的格子和這個(gè)格子建邊(注意建邊方向,流量從左流出),權(quán)值為8,并將這個(gè)格子和匯點(diǎn)建邊,權(quán)值為數(shù)字 - 右邊白色格子的數(shù)量
- 如果兩個(gè)數(shù)字同時(shí)存在,就拆點(diǎn)建邊,建邊過(guò)程同上
- 因?yàn)樾枰袛嗝總€(gè)格子的信息,所以可以用一個(gè)結(jié)構(gòu)體來(lái)存放每個(gè)格子的信息
- 類型(黑色, 白色, 有數(shù)字)
- 數(shù)字的大小
- 100 * 100 的圖,所以最多可以建100 * 100 * 2 * 2 條邊,(建邊的時(shí)候默認(rèn)兩條)
- head數(shù)組應(yīng)該開100 * 100 * 2
- 最后跑一邊Dinic
總結(jié)
以上是生活随笔為你收集整理的HDU Problem - 3338 Kakuro Extension (最大流,建图)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 无意中发现一个有趣的事情
- 下一篇: HDU Problem - 4280 I