/*蛇形填数
时间限制:3000 ms | 内存限制:65535 KB
难度:3
描述
在n*n方陈里填入1,2,...,n*n,要求填成蛇形。例如n=4时方陈为:
10 11 12 1
9 16 13 2
8 15 14 3
7 6 5 4
输入
直接输入方陈的维数,即n的值。(n<=100)
输出
输出结果是蛇形方陈。
样例输入
3
样例输出
7 8 1
6 9 2
5 4 3*/
#include<stdio.h>
#include<string.h>
int main()
{
int n;
scanf("%d", &n);
int a[n][n];
int x=0,y=n-1,count=0;
memset(a,0,sizeof(a));
count=a[x][y]=1;
while(count<n*n)
{
while(x+1<n&&!a[x+1][y])
a[++x][y]=++count;
while(y>0&&!a[x][y-1])
a[x][--y]=++count;
while(x>0&&!a[x-1][y])
a[--x][y]=++count;
while(y+1<n&&!a[x][y+1])
a[x][++y]=++count;
}
for(x=0;x<n;x++)
{
for(y=0;y<n;y++)
printf("%5d ", a[x][y]);
printf("\n");
}
return 0;
}
时间限制:3000 ms | 内存限制:65535 KB
难度:3
描述
在n*n方陈里填入1,2,...,n*n,要求填成蛇形。例如n=4时方陈为:
10 11 12 1
9 16 13 2
8 15 14 3
7 6 5 4
输入
直接输入方陈的维数,即n的值。(n<=100)
输出
输出结果是蛇形方陈。
样例输入
3
样例输出
7 8 1
6 9 2
5 4 3*/
#include<stdio.h>
#include<string.h>
int main()
{
int n;
scanf("%d", &n);
int a[n][n];
int x=0,y=n-1,count=0;
memset(a,0,sizeof(a));
count=a[x][y]=1;
while(count<n*n)
{
while(x+1<n&&!a[x+1][y])
a[++x][y]=++count;
while(y>0&&!a[x][y-1])
a[x][--y]=++count;
while(x>0&&!a[x-1][y])
a[--x][y]=++count;
while(y+1<n&&!a[x][y+1])
a[x][++y]=++count;
}
for(x=0;x<n;x++)
{
for(y=0;y<n;y++)
printf("%5d ", a[x][y]);
printf("\n");
}
return 0;
}
1999

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



