博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2676 Sudoku
阅读量:5281 次
发布时间:2019-06-14

本文共 3333 字,大约阅读时间需要 11 分钟。

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

1103000509002109400000704000300502006060000050700803004000401000009205800804000107

Sample Output

143628579572139468986754231391542786468917352725863914237481695619275843854396127 题目大意:数独填空。 解题方法:搜索。
#include 
#include
#include
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("\n"); } } 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;}

 

转载于:https://www.cnblogs.com/lzmfywz/p/3263506.html

你可能感兴趣的文章
开发框架模块视频系列(2)-Winform分页控件介绍
查看>>
前端之Java Script(3)
查看>>
函数式编程语言
查看>>
Factorial Trailing Zeroes
查看>>
date_default_timezone_set()设置时区
查看>>
变量的类型自动转换
查看>>
jeecg扩展封装tag的那些事
查看>>
Java课程寒假之开发记账本软件(网页版)之四
查看>>
Spring Boot简明教程之数据访问(一):JDBC Template
查看>>
zigzag数组实现
查看>>
H5开发APP考题和答案
查看>>
Apache 服务器
查看>>
获取终端下光标的位置
查看>>
线程同步
查看>>
linux异步通知
查看>>
用户输入序号选择商品,按q退出
查看>>
根据变量声明,下列各赋值语句中存放的结果是声明?
查看>>
HDU 2612 Find a way
查看>>
Android SERVICE后台服务进程的自启动和保持
查看>>
POJ 3177——Redundant Paths——————【加边形成边双连通图】
查看>>