惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
B
Blog RSS Feed
H
Help Net Security
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
L
LangChain Blog
Vercel News
Vercel News

OhYee 博客

小鹏辅助驾驶测评|OhYee 博客 小鹏非支持手机开启自动解锁|OhYee 博客 使用函数计算实现 301 重定向|OhYee 博客 针对 HTML 内容使用 Ant Design 图片弹框|OhYee 博客 博客进程泄露及僵尸进程解决|OhYee 博客 蓝易云服务器体验|OhYee 博客 SSH 调起本地 VSCode|OhYee 博客 【2022 秋招内推】阿里云后端研发工程师|OhYee 博客 使用函数计算获取 IP 地址信息|OhYee 博客 正确获取客户端 IP/HTTP Header 也可能重复|OhYee 博客 评测 Oculus Quest2 及 BigScreen|OhYee 博客 NextJS 热重载保留状态|OhYee 博客 如何优雅地贴 gist 代码|OhYee 博客 Linux 精细化文件权限|OhYee 博客 VSCode 容器开发环境|OhYee 博客 Clash 的不兼容更新排查|OhYee 博客 Zeek 导出 PCAP|OhYee 博客 记一次 ssh 配置问题|OhYee 博客 Git Commit 规范化工具|OhYee 博客 谈谈《星之卡比-探索发现》|OhYee 博客 VSCode 快捷键绑定 Shell 命令|OhYee 博客 ASN.1 语法及 X.509 证书格式解析解析|OhYee 博客 腾讯企业邮箱忽略 MX 记录发信|OhYee 博客 Chrome/Edge 标签组插件|OhYee 博客 【应届内推】阿里云后端研发工程师|OhYee 博客 损坏的 Typecho 备份处理为 JSON|OhYee 博客 VS Code VIM 插件高效使用|OhYee 博客 SSH 正反向代理|OhYee 博客 Let's Encrypt 根证书过期引发的问题|OhYee 博客 OpenWRT 忽略内核依赖|OhYee 博客
HDU 5547.Sudoku|OhYee 博客
2017-10-06 · via OhYee 博客

题目

{% fold 点击显/隐题目 %}

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 4×44×4 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 2×22×2 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!!!

The first line of the input gives the number of test cases, $T(1≤T≤100)$. $T$ 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.

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

3 \*\*\*\* 2341 4123 3214 \*243 \*312 \*421 \*134 \*41\* \*\*3\* 2\*41 4\*2\*

Case #1: 1432 2341 4123 3214 Case #2: 1243 4312 3421 2134 Case #3: 3412 1234 2341 4123

{% endfold %}

题解

填数独,*为待填项,共有1,2,3,4四种数字,棋盘大小为4*4,需要满足每行每列以及4个2*2的小区域正好是1,2``,3``,4

直接爆搜会TLE
注意到 It's guaranteed that there will be exactly one way to recover the board.
有且仅有一组解
可以根据每一行每一列每个正方形区域内已有的数字来推测需要填的数字

具体做法就是记录区域内已有的数字,然后给待填项标记上还能填的数字,只到所有数字都只有一种填法

代码

{% fold 点击显/隐代码 %}```cpp Sudoku https://github.com/OhYee/sourcecode/tree/master/ACM 代码备份
#include
#include
using namespace std;

char m[5][5];
bool vis[5][5][5];
int p[4][2];

void output() {
for (int i = 0; i < 4; ++i) {
for (int j = 0; j < 4; ++j)
if (m[i][j] == '*') {
printf(" %d%d%d%d", vis[i][j][1], vis[i][j][2], vis[i][j][3],
vis[i][j][4]);
} else
printf("%5d", m[i][j]);
printf("\n");
}
printf("\n");
}

bool _Change() {
bool change = false;
bool has[5];
memset(has, false, sizeof(has));

// for (int i = 0; i < 4; ++i) {
//     printf("(%d %d) ", p[i][0], p[i][1]);
// }
// printf("\n");

for (int i = 0; i < 4; ++i) {
    int x = p[i][0], y = p[i][1];
    if (m[x][y] != '*')
        has[(int)m[x][y]] = true;
}

for (int j = 1; j <= 4; ++j) {
    if (has[j] == true) {
        for (int i = 0; i < 4; ++i) {
            int x = p[i][0], y = p[i][1];
            if (m[x][y] == '*' && vis[x][y][j] == false) {
                change = true;
                vis[x][y][j] = true;
            }
        }
    }
}

for (int i = 0; i < 4; ++i) {
    int x = p[i][0], y = p[i][1];
    if (m[x][y] == '*') {
        int ok = 0;
        for (int j = 1; j <= 4; ++j) {
            if (vis[x][y][j] == false) {
                if (ok == 0) {
                    ok = j;
                } else {
                    ok = 0;
                    break;
                }
            }
        }
        if (ok != 0)
            m[x][y] = ok;
    }
}
return change;

}

bool Change() {
bool ok = false;
for (int i = 0; i < 4; ++i) {
for (int j = 0; j < 4; ++j) {
p[j][0] = i;
p[j][1] = j;
}
ok |= _Change();
}
for (int i = 0; i < 4; ++i) {
for (int j = 0; j < 4; ++j) {
p[j][0] = j;
p[j][1] = i;
}
ok |= _Change();
}
for (int i = 0; i < 2; ++i) {
for (int j = 0; j < 2; ++j) {
p[i * 2 + j][0] = i;
p[i * 2 + j][1] = j;
}
}
ok |= _Change();

for (int i = 0; i < 2; ++i) {
    for (int j = 0; j < 2; ++j) {
        p[i * 2 + j][0] = i + 2;
        p[i * 2 + j][1] = j;
    }
}
ok |= _Change();

for (int i = 0; i < 2; ++i) {
    for (int j = 0; j < 2; ++j) {
        p[i * 2 + j][0] = i;
        p[i * 2 + j][1] = j + 2;
    }
}
ok |= _Change();

for (int i = 0; i < 2; ++i) {
    for (int j = 0; j < 2; ++j) {
        p[i * 2 + j][0] = i + 2;
        p[i * 2 + j][1] = j + 2;
    }
}
ok |= _Change();

return ok;

}

int main() {
int T;
scanf("%d", &T);
for (int kase = 1; kase <= T; ++kase) {
for (int i = 0; i < 4; ++i)
scanf("%s", m[i]);

    for (int i = 0; i < 4; ++i)
        for (int j = 0; j < 4; ++j)
            if (m[i][j] == '*')
                memset(vis[i][j], false, sizeof(vis[i][j]));
            else
                m[i][j] = m[i][j] - '0';

    while (Change()) ;
    printf("Case #%d:\n", kase);
    for (int i = 0; i < 4; ++i) {
        for (int j = 0; j < 4; ++j)
            printf("%d", m[i][j]);
        printf("\n");
    }
}
return 0;

}

{% endfold %}