描述
Ben is writing a small game Sudoku.But he finds it hard to produce a resonable
matrix for a new game.So he asks you for help.
To make the problem easier, we can only generate a line of the matrix.
There are 362880 different kinds of line from 123456789 to 987654321.
In this problem,we regard 123456789 as the first line,regard 123456798
as the second line, and so on.
输入
The input consists of multiple test cases. Each test case consists of an integer n(0<n<=362880). Process to the end of file.
输出
For each test case, print the nth line.
样例输入
1
2
3
362880
样例输出
1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 9 8
1 2 3 4 5 6 8 7 9
9 8 7 6 5 4 3 2 1
#include <iostream>
#include <algorithm>
using namespace std;
#define MAX 362888
int main(){
int n,count,i;
while (scanf("%d",&n)!=EOF){
int a[]={1,2,3,4,5,6,7,8,9};
for (count=1;count<n;count++)
next_permutation(a,a+9);
for (i=0;i<8;i++)
printf("%d ",a[i]);
printf("%d\n",a[8]);
}
return 0;
}
利用next_permutation函数求全排列,使用样例:
#include <cstdio>
#include <algorithm>
#include <cstring>
#define MAX 100
using namespace std;
int main()
{
int length;
char str[MAX];
gets(str);
length = strlen(str);
sort(str, str + length);
puts(str);
while (next_permutation(str, str + length))
{
puts(str);
}
return 0;
}
本文介绍了一种用于Sudoku游戏的矩阵生成算法,重点在于如何通过排列组合生成不同的游戏初始矩阵行,确保每行数字不重复且符合游戏规则。
1万+

被折叠的 条评论
为什么被折叠?



