NYOJ 33 蛇形填数

蛇形填数

时间限制: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

 1 #include <cstdio>
 2 #include <string.h>
 3 int a[101][101];
 4 int main()
 5 {
 6     int n,i,tot,x,y;
 7     scanf("%d",&n);
 8     memset(a,0,sizeof(a));
 9     tot=a[x=0][y=n-1]=1;
10     while(tot<n*n)
11     {
12         while(x<n-1&&!a[x+1][y])  a[++x][y]=++tot; 
13         while(y>0 &&!a[x][y-1])      a[x][--y]=++tot;
14         while(x>0&&!a[x-1][y])      a[--x][y]=++tot;
15         while(y<n-1&&!a[x][y+1])  a[x][++y]=++tot;
16     }
17     for(x=0;x<n;x++)
18     {
19         for(y=0;y<n;y++)
20             printf("%d ",a[x][y]);
21         printf("\n");
22     }
23     return 0;
24 }

 

posted @ 2015-02-27 14:55  Tiey  阅读(189)  评论(0编辑  收藏  举报