로곡 P1443말의 순코드 해제
12874 단어 문제 코드
#include
#include
#include
#include
#define MAXN 405
using namespace std;
typedef struct coordinate{
int x, y;
}coor;
coor horse;
queue <coor> q;
int chest[MAXN][MAXN];
int n, m;
int walk[8][2] = {{2, 1}, {1, 2}, {-1, 2}, {-2, 1}, {-2, -1}, {-1, -2}, {1, -2}, {2, -1}};
void print()
{
for(int i = 1; i <= n; i ++)
{
for(int j = 1; j <= m; j ++)
{
printf("%-5d", chest[i][j]);
}
printf("
");
}
}
int main()
{
scanf("%d%d%d%d", &n, &m, &horse.x, &horse.y);
memset(chest, -1, sizeof(chest));
q.push(horse);
chest[horse.x][horse.y] = 0;
while(!q.empty())
{
int temx, temy;
coor first = q.front();
coor tem;
q.pop();
for(int i = 0; i < 8; i ++)
{
temx = first.x + walk[i][0];
temy = first.y + walk[i][1];
if(temx < 1 || temy < 1 || temx > n || temy > m || chest[temx][temy] != -1) continue;
chest[temx][temy] = chest[first.x][first.y] + 1;
tem.x = temx;
tem.y = temy;
q.push(tem);
}
}
print();
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로곡 P2392 시험 전 포불발의 순수 코드 문제풀이텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.