码迷,mamicode.com
首页 > 编程语言 > 详细

算法竞赛入门经典第二版 蛇形填数 P40

时间:2019-10-22 12:59:27      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:ace   第二版   竞赛   using   style   ret   def   col   --   

#include<bits/stdc++.h>
using namespace std;
#define maxn 20
int a[maxn][maxn]; 
int main(){
    int n,x,y,tot=0;
    cin>>n;
    memset(a,0,sizeof(a));
    tot=a[x=0][y=n-1]=1;
    while(tot<n*n){
        while(x+1<n&&!a[x+1][y])  a[++x][y]=++tot;
        while(y-1>=0&&!a[x][y-1])  a[x][--y]=++tot;
        while(x-1>=0&&!a[x-1][y])  a[--x][y]=++tot;
        while(y+1<n&&!a[x][y+1])  a[x][++y]=++tot;  //先相加再运行 
    }
    for(x=0;x<n;x++)
        {for(y=0;y<n;y++)
            printf("%3d",a[x][y]);
        printf("\n");}
    return 0;
} 

 

算法竞赛入门经典第二版 蛇形填数 P40

标签:ace   第二版   竞赛   using   style   ret   def   col   --   

原文地址:https://www.cnblogs.com/QingyuYYYYY/p/11718801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!