Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
9b32aa81
Commit
9b32aa81
authored
Dec 21, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
e25b354a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
11 deletions
+14
-11
sudoku.h
jlib/misc/sudoku.h
+14
-11
No files found.
jlib/misc/sudoku.h
View file @
9b32aa81
...
...
@@ -12,15 +12,17 @@ namespace jlib {
namespace
misc
{
namespace
sudoku
{
constexpr
int
N
=
81
;
constexpr
int
NEIGHBORS
=
20
;
constexpr
int
GROUPS_OF
=
3
;
constexpr
int
GROUPS
=
27
;
constexpr
int
N
=
81
;
// 81 格
constexpr
int
NEIGHBORS
=
20
;
// 每格有20个邻居
constexpr
int
GROUPS_OF
=
3
;
// 每格属于3个组
constexpr
int
GROUPS
=
27
;
// 27个组 = 9行+9列+9块
// 辅助结构体
// 内部数据初始化后就不会变化了,批量求多个数独时可以复用同一个 Helper
struct
Helper
{
int
neighbors
[
N
][
NEIGHBORS
];
// 每格有20个邻居
int
groups_of
[
N
][
GROUPS_OF
];
// 每格属于3个组
int
groups
[
GROUPS
][
9
];
// 27个组 = 9行+9列+9块
int
neighbors
[
N
][
NEIGHBORS
];
int
groups_of
[
N
][
GROUPS_OF
];
int
groups
[
GROUPS
][
9
];
std
::
default_random_engine
rng
=
jlib
::
seeded_random_engine
();
...
...
@@ -173,7 +175,6 @@ inline bool eliminate(bool cells[N][9], int k, int val, Helper* helper) {
inline
bool
read_grid
(
const
std
::
string
&
grid
,
bool
cells
[
N
][
9
],
Helper
*
helper
)
{
if
(
grid
.
size
()
!=
81
)
{
return
false
;
}
memset
(
cells
,
true
,
sizeof
(
cells
));
for
(
int
i
=
0
;
i
<
81
;
i
++
)
{
if
(
'1'
<=
grid
[
i
]
&&
grid
[
i
]
<=
'9'
)
{
if
(
!
assign
(
cells
,
i
,
grid
[
i
]
-
'0'
,
helper
))
{
...
...
@@ -227,6 +228,7 @@ inline bool solve(const std::string& grid, std::string& solved_grid, Helper* hel
helper
=
&
h
;
}
bool
cells
[
N
][
9
];
memset
(
cells
,
true
,
sizeof
(
cells
));
if
(
!
read_grid
(
grid
,
cells
,
helper
))
{
return
false
;
}
...
...
@@ -272,7 +274,8 @@ inline int solve_n(const std::string& grid, OnSolved on_solved, int max_solves =
static
Helper
h
;
helper
=
&
h
;
}
bool
cells
[
N
][
9
];
bool
cells
[
N
][
9
];
memset
(
cells
,
true
,
sizeof
(
cells
));
if
(
!
read_grid
(
grid
,
cells
,
helper
))
{
return
0
;
}
...
...
@@ -345,11 +348,11 @@ inline std::string random_puzzle(Helper* helper = nullptr) {
for
(
auto
k
:
random_N
)
{
// 随机挖洞
char
old
=
solved_grid
[
k
];
solved_grid
[
k
]
=
'.'
;
// 挖洞
if
(
solve_n
(
solved_grid
.
c_str
()
,
nullptr
,
2
)
>
1
)
{
// 有多解则恢复,继续挖
if
(
solve_n
(
solved_grid
,
nullptr
,
2
)
>
1
)
{
// 有多解则恢复,继续挖
solved_grid
[
k
]
=
old
;
}
}
if
(
solve_n
(
solved_grid
.
c_str
()
,
nullptr
,
2
)
==
1
)
{
if
(
solve_n
(
solved_grid
,
nullptr
,
2
)
==
1
)
{
return
solved_grid
;
}
return
random_puzzle
(
helper
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment