HDU 5547 Sudoku(暴力)

来源:互联网 发布:linux怎么建立文件 编辑:程序博客网 时间:2024/06/05 10:31

思路:4X4的,直接爆搜就好了


#include <bits/stdc++.h>using namespace std;const int maxn = 5;char a[maxn][maxn];int rec[20][2], cnt;bool dfs(int th){//cout<<"th:"<<th<<endl;if(th>=cnt) return true;int x = rec[th][0], y=rec[th][1];int vis[5];memset(vis, 0, sizeof(vis));for(int i=1;i<=4;++i){if(a[x][i]!='*') vis[a[x][i]-'0']=1;if(a[i][y]!='*') vis[a[i][y]-'0']=1;}if(x<=2){if(y<=2) {for(int i=1;i<=2;++i) for(int j=1;j<=2;++j) if(a[i][j]!='*') vis[a[i][j]-'0']=1;}else {for(int i=1;i<=2;++i)for(int j=3;j<=4;++j) if(a[i][j]!='*') vis[a[i][j]-'0']=1;}}else {if(y<=2) {for(int i=3;i<=4;++i)for(int j=1;j<=2;++j) if(a[i][j]!='*') vis[a[i][j]-'0']=1;}else {for(int i=3;i<=4;++i)for(int j=3;j<=4;++j) if(a[i][j]!='*') vis[a[i][j]-'0']=1;}}for(int i=1;i<=4;++i){if(!vis[i]){a[rec[th][0]][rec[th][1]] = i+'0';if(dfs(th+1)) return true;a[rec[th][0]][rec[th][1]] = '*';}}return false;}int main(){int ca, tt=1;scanf("%d", &ca);while(ca--){for(int i=1;i<=4;++i) scanf("%s", a[i]+1);int x=1, y=1;cnt=0;for(int i=1;i<=4;++i)for(int j=1;j<=4;++j) if(a[i][j]=='*'){rec[cnt][0]=i, rec[cnt][1]=j; cnt++;}dfs(0);printf("Case #%d:\n", tt++);for(int i=1;i<=4;++i){for(int j=1;j<=4;++j) printf("%c", a[i][j]);puts("");}}return 0;}


Description

Yi Sima was one of the best counselors of Cao Cao. He likes to play a funny game himself. It looks like the modern Sudoku, but smaller.

Actually, Yi Sima was playing it different. First of all, he tried to generate a  board with every row contains 1 to 4, every column contains 1 to 4. Also he made sure that if we cut the board into four  pieces, every piece contains 1 to 4. 

Then, he removed several numbers from the board and gave it to another guy to recover it. As other counselors are not as smart as Yi Sima, Yi Sima always made sure that the board only has one way to recover. 

Actually, you are seeing this because you've passed through to the Three-Kingdom Age. You can recover the board to make Yi Sima happy and be promoted. Go and do it!!!
 

Input

The first line of the input gives the number of test cases,  test cases follow. Each test case starts with an empty line followed by 4 lines. Each line consist of 4 characters. Each character represents the number in the corresponding cell (one of '1', '2', '3', '4'). '*' represents that number was removed by Yi Sima. 

It's guaranteed that there will be exactly one way to recover the board.
 

Output

For each test case, output one line containing Case #x:, where  is the test case number (starting from 1). Then output 4 lines with 4 characters each. indicate the recovered board.
 

Sample Input

3****234141233214*243*312*421*134*41***3*2*414*2*
 

Sample Output

Case #1:1432234141233214Case #2:1243431234212134Case #3:3412123423414123
 


0 0
原创粉丝点击