Agony


私信TA

用户名:dzc21

访问量:55512

签 名:

CSDN博客:http://blog.csdn.net/qq_38712932

等  级
排  名 81
经  验 9461
参赛次数 0
文章发表 81
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

CSDN博客:http://blog.csdn.net/qq_38712932 个人博客:http://www.eternallyc.top/blog/index

解题思路:





注意事项:





参考代码:

#include <bits/stdc++.h>

using namespace std;

int num[1000005],nums=0;

int main()

{

    int m,n;

    scanf("%d%d",&m,&n);

    int g[205][205];

    for(int a = 0; a < m; a ++)

        for(int b = 0; b < n; b ++)

            scanf("%d",&g[a][b]);

    int x=-1,y=0;//初始位置

    int top=0;

    while(top<m*n)

    {

        while(g[x+1][y]!=-1&&x+1<m)//向下

        {

            num[nums++]=g[++x][y];

            g[x][y]=-1;

            top++;

        }

        while(g[x][y+1]!=-1&&y+1<n)//向右

        {

            num[nums++]=g[x][++y];

            g[x][y]=-1;

            top++;

        }


        while(g[x-1][y]!=-1&&x-1>=0)//向上

        {

            num[nums++]=g[--x][y];

            g[x][y]=-1;

            top++;

        }

        while(g[x][y-1]!=-1&&y-1>=0)//向左

        {

            num[nums++]=g[x][--y];

            g[x][y]=-1;

            top++;

        }

    }

    for(int a = 0; a < nums; a ++)

        printf("%d ",num[a]);

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »