poj2676 Sudoku

Sudoku
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 14100 Accepted: 6961 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
题意:数独:玩家需要根据9×9盘面上的已知数字,推理出所有剩余空格的数字,并满足每一行、每一列、每一个粗线宫内的数字均含1-9,不重复
思路: 爆搜,枚举,设置一个二维数组x[i][k]表示第i行有木有出现过数字k,y[j][k]表示第j列有木有出现过数字k,xg[(i/3)*3+j/3][k]表示第(i/3)*3+j/3个宫格有木有出现过 数字k;
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<string>
#include<cstring>
#include<list>
#include<queue>
#include<stack>
#include<map>
#include<set>
#include<algorithm>
#include<cmath>
#include<bitset>
#include<climits>
#define mem(a) memset(a,0,sizeof(a))
#define MAXN 100000
using namespace std;
char vw[9][9];
int x[9][9],y[9][9],xg[9][9];
bool vis;
int flag=0;
void dfs(int a,int b)
{
    int u=a*9+b+1;//这个公式对应下面的<span style="font-family: arial, 宋体, sans-serif;"> dfs(u/9,u%9),很精巧,自己想想为啥</span>
    if(a==9)
    {
        vis=true;//填好就标记直接返回
        for(int i=0; i<9; i++)
        {
            for(int j=0; j<9; j++)
                printf("%d",vw[i][j]+1);
            printf("\n");
        }
    }
    if(vis)<span style="font-family: arial, 宋体, sans-serif;">//填好就直接返回</span>
        return ;
    if(vw[a][b]!=-1)
    {
        dfs(u/9,u%9);
        return ;
    }
    for(int i=0; i<9&&!vis; i++)
    {
        if(!x[a][i]&&!y[b][i]&&!xg[(a/3)*3+b/3][i])
        {
            x[a][i]=y[b][i]=xg[(a/3)*3+b/3][i]=1;
            vw[a][b]=i;
            dfs(u/9,u%9);
            x[a][i]=y[b][i]=xg[(a/3)*3+b/3][i]=0;
            vw[a][b]=-1;
        }
    }
}
int main()
{
    int i,j,k,t;
    char ch;
    cin>>t;
    while(t--)
    {
        mem(x);
        mem(y);
        mem(xg);
        mem(vw);
        for(i=0; i<9; i++)
            for(j=0; j<9; j++)
            {
                cin>>ch;
                k=vw[i][j]=ch-'1';
                //printf("%d %d",k,vw[i][j]);
                if(ch-'0')
                {
                    x[i][k]=y[j][k]=xg[(i/3)*3+j/3][k]=1;
                }
            }
        vis=false;//标记填没填好
        dfs(0,0);
    }
    return 0;
}


电动汽车数据集:2025年3K+记录 真实电动汽车数据:特斯拉、宝马、日产车型,含2025年电池规格和销售数据 关于数据集 电动汽车数据集 这个合成数据集包含许多品牌和年份的电动汽车和插电式车型的记录,捕捉技术规格、性能、定价、制造来源、销售和安全相关属性。每一行代表由vehicle_ID标识的唯一车辆列表。 关键特性 覆盖范围:全球制造商和车型组合,包括纯电动汽车和插电式混合动力汽车。 范围:电池化学成分、容量、续航里程、充电标准和速度、价格、产地、自主水平、排放、安全等级、销售和保修。 时间跨度:模型跨度多年(包括传统和即将推出的)。 数据质量说明: 某些行可能缺少某些字段(空白)。 几个分类字段包含不同的、特定于供应商的值(例如,Charging_Type、Battery_Type)。 各列中的单位混合在一起;注意kWh、km、hr、USD、g/km和额定值。 列 列类型描述示例 Vehicle_ID整数每个车辆记录的唯一标识符。1 制造商分类汽车品牌或OEM。特斯拉 型号类别特定型号名称/变体。型号Y 与记录关联的年份整数模型。2024 电池_类型分类使用的电池化学/技术。磷酸铁锂 Battery_Capacity_kWh浮充电池标称容量,单位为千瓦时。75.0 Range_km整数表示充满电后的行驶里程(公里)。505 充电类型主要充电接口或功能。CCS、NACS、CHAdeMO、DCFC、V2G、V2H、V2L Charge_Time_hr浮动充电的大致时间(小时),上下文因充电方法而异。7.5 价格_USD浮动参考车辆价格(美元).85000.00 颜色类别主要外观颜色或饰面。午夜黑 制造国_制造类别车辆制造/组装的国家。美国 Autonomous_Level浮点自动化能力级别(例如0-5),可能包括子级别的小
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值