C++求改 90分

P1443 马的遍历

aSamyy @ 2024-09-14 19:42:43

#include <bits/stdc++.h>
using namespace std;
int n,m,x,y;
int dx[8]={-2,-1,1,2,2,1,-1,-2},dy[8]={-1,-2,-2,-1,1,2,2,1};
int a[400][400];
void dg(int x,int y,int step)
{
    if(x<=0||y<=0||x>n||y>m||step>=a[x][y]&&a[x][y]!=-1) return ;
    a[x][y]=step;
    for(int i=0; i<8; i++)
    {
        int x1=x+dx[i];
        int y1=y+dy[i];
        if(x1>0&&y1>0&&x1<=n&&y1) dg(x1,y1,step+1);
    }
}
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    memset(a,-1,sizeof(a));
    cin>>n>>m>>x>>y;
    dg(x,y,0);
    for(int i=1; i<=n; i++)
    {
        for(int j=1; j<=m; j++) cout<<setw(5)<<a[i][j];
        cout<<'\n';
    }
    return 0;
}

|