蛇形填数(最短代码,拒绝质疑)

#include<bits/stdc++.h>
using namespace std;
#define maxn 20
int n,x,y,tot;
int a[maxn][maxn];
int main(){
    
    scanf("%d",&n);
    tot=a[x=0][y=n-1]=1;
    //把tot计数变量与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;
        //按照蛇形矩阵的特点,依次填入数字
        //找找规律,就能发现每一列行与i的关系 
    }

    for(x=0;x<n;x++){
        for(y=0;y<n;y++){
            printf("%d ",a[x][y]);
        }
        printf("\n");//输出 
    }
    return 0;
}

上一篇:统计一个序列所有数的因子个数


下一篇:预处理+条件的维度减少