zoukankan      html  css  js  c++  java
  • POJ 2676 Sudoku

    Sudoku
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 12005   Accepted: 5984   Special Judge

    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 to 9. The other cells are empty. The goal is to fill the empty cells with decimal digits from 1 to 9, one digit per cell, in such way that in each row, in each column and in each marked 3x3 subsquare, all the digits from 1 to 9 to appear. Write a program to solve a given Sudoku-task. 

    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

    1
    103000509
    002109400
    000704000
    300502006
    060000050
    700803004
    000401000
    009205800
    804000107

    Sample Output

    143628579
    572139468
    986754231
    391542786
    468917352
    725863914
    237481695
    619275843
    854396127
    题目大意:数独填空。
    解题方法:搜索。
    #include <stdio.h>
    #include <iostream>
    #include <string.h>
    using namespace std;
    
    typedef struct
    {
        int x;
        int y;
    }Point;
    
    Point p[85];
    
    char Maze[15][15];
    int nCount = 0;
    bool bfind = false;
    
    bool Judge1(int row, int n)
    {
        for (int i = 0; i < 9; i++)
        {
            if (Maze[row][i] == n)
            {
                return false;
            }
        }
        return true;
    }
    
    bool Judge2(int col, int n)
    {
        for (int i = 0; i < 9; i++)
        {
            if (Maze[i][col] == n)
            {
                return false;
            }
        }
        return true;
    }
    
    bool Judge3(int row, int col, int n)
    {
        row = row / 3;
        col = col / 3;
        for (int i = row * 3; i < row * 3 + 3; i++)
        {
            for (int j = col * 3; j < col * 3 + 3; j++)
            {
                if (Maze[i][j] == n)
                {
                    return false;
                }
            }
        }
        return true;
    }
    
    void DFS(int Step)
    {
        if (Step == nCount && !bfind)
        {
            bfind = true;
            for (int i = 0; i < 9; i++)
            {
                for (int j = 0; j < 9; j++)
                {
                    printf("%d", Maze[i][j]);
                }
                printf("
    ");
            }
        }
        for (int i = 1; i <= 9; i++)
        {
            if (Judge1(p[Step].x, i) && Judge2(p[Step].y, i) && Judge3(p[Step].x, p[Step].y, i) && !bfind && Maze[p[Step].x][p[Step].y] == 0)
            {
                Maze[p[Step].x][p[Step].y] = i;
                DFS(Step + 1);
                Maze[p[Step].x][p[Step].y] = 0;
            }
        }
    }
    
    int main()
    {
        int nCase;
        char str[10];
        scanf("%d", &nCase);
        memset(Maze, 0, sizeof(Maze));
        while(nCase--)
        {
            nCount = 0;
            bfind = false;
            for (int i = 0; i < 9; i++)
            {
                scanf("%s", str);
                for (int j = 0; j < 9; j++)
                {
                    Maze[i][j] = str[j] - '0';
                    if (Maze[i][j] == 0)
                    {
                        p[nCount].x = i;
                        p[nCount].y = j;
                        nCount++;
                    }
                }
            }
            DFS(0);
        }
        return 0;
    }
  • 相关阅读:
    2018最新php笔试题及答案(持续更新)
    快速上手模板制作
    春节期间小游戏同时在线人数最高达2800万人/小时
    公众平台新增修改文章错别字功能 每篇文章允许被修改一次仅限正文内五个字
    微信6.6.2版更新:支持两个账号一键切换
    小程序支持打开APP了 还有小程序的标题栏也可以自定义
    小程序发布重磅数据:日活跃用户数1.7亿、已上线小程序58万个,覆盖100万开发者、2300个第三方平台
    张小龙2018PRO版微信公开课演讲全文 透露2018微信全新计划
    除了跳一跳还有16款微信小游戏可以玩
    小游戏里潜藏着600亿的大市场
  • 原文地址:https://www.cnblogs.com/lzmfywz/p/3263506.html
Copyright © 2011-2022 走看看