c语言sscanf函数的用法是什么
186
2022-09-16
POJ 2676 Sudoku1 (DFS)
Description
Input
The input data will start with the number of the test cases. For each test case, 9 lines follow, corresponding to the rows of the table. On each line a string of exactly 9 decimal digits is given, corresponding to the cells in this line. If a cell is empty it is represented by 0.
Output
For each test case your program should print the solution in the same format as the input data. The empty cells have to be filled according to the rules. If solutions is not unique, then the program may print any one of them.
Sample Input
1103000509002109400000704000300502006060000050700803004000401000009205800804000107
Sample Output
143628579572139468986754231391542786468917352725863914237481695619275843854396127
题意
给出一个16*16矩阵的部分格,其中0为空格,要求填充这些空格。
使矩阵满足横竖和九个3*3的方格内的数字都包含1~9这9个数字。
思路
很基础的DFS,先存储当前每行每列和每块的数字状态,然后从左上角开始搜索,遇到零的时候向该点填充一个当前行、当前列、当前块都不存在的一个数字,若无法填充,则结束此层DFS,若可行,继续搜索下一层,直到搜索到右下角,标记已经找到答案,此时结束所有DFS,注意在结束的过程中要保留当前所填充的矩阵。
AC 代码
#include
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~