题目链接:http://poj.org/problem?id=2676数独问题。用dancing links解决。建图参考http://wenku.baidu.com/link?url=3Tk5gVYew3mSQ2f2LxDODxPg3v-yqJPUaEkuZpfkHTxfSPQuM_n8TGl2S...
分类:
其他好文 时间:
2015-04-23 23:18:15
阅读次数:
266
SudokuTime Limit:10000MSMemory Limit:32768KB64bit IO Format:%lld & %lluSubmitStatusPracticeZOJ 3122Appoint description:DescriptionA Sudoku grid is a 1...
分类:
其他好文 时间:
2015-04-23 19:35:35
阅读次数:
121
SudokuTime Limit:1000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uSubmitStatusPracticePOJ 3074Appoint description:DescriptionIn the game of Sudo...
分类:
其他好文 时间:
2015-04-23 15:01:33
阅读次数:
239
Description
Sudoku is a very simple task. A square table with 9 rows and 9 columns is divided to 9 smaller squares 3x3 as shown on the Figure. In some of the cells are written decimal digits from 1...
分类:
其他好文 时间:
2015-04-23 13:17:16
阅读次数:
144
最后一个block部分不一样,此外,helper最后的return true要想一想,小莹子的解释很好“对整个棋盘所有'.'都填完了,那么就可以返回true了。”public class Solution { public void solveSudoku(char[][] board) { ...
分类:
其他好文 时间:
2015-04-22 09:28:03
阅读次数:
98
最后一个循环的问题比较值得学习,本质是n皇后public class Solution { public boolean isValidSudoku(char[][] board) { //http://blog.csdn.net/linhuanmars/article/deta...
分类:
其他好文 时间:
2015-04-22 08:16:10
阅读次数:
106
碰到的第一个题就是九宫格的问题,
Valid Sudoku
determine if a Sudoku is valid, according to: http://sudoku.com.au/TheRules.aspx
The Sudoku board could be partially filled, where empty cells are fille...
分类:
其他好文 时间:
2015-04-21 18:12:06
阅读次数:
134
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1426 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 char map[12][...
分类:
其他好文 时间:
2015-04-20 00:24:08
阅读次数:
238
这个解法告诉我们读题要精确,且例证了多维数组的重要性。# Sudoku [http://en.wikipedia.org/wiki/Sudoku]# A valid sudoku square satisfies these# two properties:# 1. Each column of.....
分类:
其他好文 时间:
2015-04-18 13:03:41
阅读次数:
124