LeetCode - 37. Sudoku Solver

简介: 37. Sudoku Solver  Problem's Link  ---------------------------------------------------------------------------- Mean:  求解数独.

37. Sudoku Solver 

Problem's Link

 ----------------------------------------------------------------------------

Mean: 

求解数独.

analyse:

只是9宫格的数独,而且测试数据都不难,所以可以直接使用递归求解,类似于N-Queue问题.

但如果宫格数较多,则需要使用Dancing-Link精确覆盖算法来求解.

Time complexity: O(N)

 

view code

/**
* -----------------------------------------------------------------
* Copyright (c) 2016 crazyacking.All rights reserved.
* -----------------------------------------------------------------
*       Author: crazyacking
*       Date  : 2016-03-02-18.53
*/
#include <queue>
#include <cstdio>
#include <set>
#include <string>
#include <stack>
#include <cmath>
#include <climits>
#include <map>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
#include <bits/stdc++.h>
#include <windows.h>
using namespace std;
typedef long long( LL);
typedef unsigned long long( ULL);
const double eps( 1e-8);

class Solution
{
public :
    void solveSudoku( vector < vector < char >>& board)
    {
        recursiveSolve( board);
    }

    bool recursiveSolve( vector < vector < char >>& board)
    {
        for( int i = 0; i < 9; ++ i)
        {
            for( int j = 0; j < 9; ++ j)
            {
                if( board [ i ][ j ] == '.')
                {
                    for( int k = 1; k <= 9; ++ k)
                    {
                        board [ i ][ j ] = static_cast < char >( k + '0');
                        if( isValid( board , i , j) && recursiveSolve( board))
                            return true;
                        board [ i ][ j ] = '.';
                    }
                    return false;
                }
            }
        }
        return true;
    }

    bool isValid( const vector < vector < char >>& board , const int r1 , const int c1) const
    {
        for( int i = 0; i < 9; ++ i)
        {
            if( i != r1 && board [ i ][ c1 ] == board [ r1 ][ c1 ])
                return false;
            if( i != c1 && board [ r1 ][ i ] == board [ r1 ][ c1 ])
                return false;
        }
        int rowBegin = r1 / 3 * 3;
        int colBegin = c1 / 3 * 3;
        for( int i = rowBegin; i < rowBegin + 3; ++ i)
        {
            for( int j = colBegin; j < colBegin + 3; ++ j)
            {
                if( i != r1 && j != c1 && board [ i ][ j ] == board [ r1 ][ c1 ])
                    return false;
            }
        }
        return true;
    }
};


int main()
{
    freopen( "H: \\ Code_Fantasy \\ in.txt" , "r" , stdin);
    Solution solution;
    vector < vector < char >> ve;
    string s;
    while( cin >>s)
    {
        vector < char > tempVe;
        for( int i = 0; i <s . length(); ++ i)
            tempVe . push_back(s [ i ]);
        ve . push_back( tempVe);
    }
    solution . solveSudoku( ve);
    return 0;
}
/*

*/
目录
相关文章
LeetCode - 36. Valid Sudoku
36. Valid Sudoku  Problem's Link  ---------------------------------------------------------------------------- Mean:  给定一个数独,判断这个数独是否合法.
916 0
|
人工智能 Java
LeetCode 36 Valid Sudoku(有效数独)
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/50118647 翻译 数独板被部分填充,空格部分用'.'来填充。
942 0
|
C++ C语言
[LeetCode] Sudoku Solver
Just don't be scared by this problem :-) It's also very standard backtracking problem. This post shares a very concise code, which is rewritten below in C++.
647 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
3月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
57 6
|
3月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
114 2