http://acm.nyist.net/JudgeOnline/problem.php?pid=58
#include
#include
#include
#include
#include
using namespace std;
int map[9][9]=
{1,1,1,1,1,1,1,1,1,
1,0,0,1,0,0,1,0,1,
1,0,0,1,1,0,0,0,1,
1,0,1,0,1,1,0,1,1,
1,0,0,0,0,1,0,0,1,
1,1,0,1,0,1,0,0,1,
1,1,0,1,0,1,0,0,1,
1,1,0,1,0,0,0,0,1,
1,1,1,1,1,1,1,1,1
};
int dx[]={0,0,1,-1};
int dy[]={1,-1,0,0};
struct point
{
int x;
int y;
int step;
}po;
bool visit[10][10];
int sx,sy,ex,ey;
int step;
int bfs(int x,int y)
{
memset(visit,false,sizeof(visit));
queueq;
po.x=x;po.y=y;po.step=0;
q.push(po);
visit[x][y]=true;
while(!q.empty())
{
po=q.front();
q.pop();
x=po.x;y=po.y;step=po.step;
if(x==ex&&y==ey) return step;
for(int i=0;i<4;++i)
{
int x1=x+dx[i];
int y1=y+dy[i];
if(!map[x1][y1]&&!visit[x1][y1]&&x1>=0&&x1<=8&&y1>=0&&y1<=8)
{ po.x=x1;po.y=y1;po.step=step+1;q.push(po);
visit[x1][y1]=true;
}
}
}
}
int main()
{
int T;
cin>>T;
while(T--)
{
cin>>sx>>sy>>ex>>ey;
cout<
dfs
#include
#include
#include
#include
#include
using namespace std;
int map[9][9]=
{1,1,1,1,1,1,1,1,1,
1,0,0,1,0,0,1,0,1,
1,0,0,1,1,0,0,0,1,
1,0,1,0,1,1,0,1,1,
1,0,0,0,0,1,0,0,1,
1,1,0,1,0,1,0,0,1,
1,1,0,1,0,1,0,0,1,
1,1,0,1,0,0,0,0,1,
1,1,1,1,1,1,1,1,1
};
int dx[]={0,0,1,-1};
int dy[]={1,-1,0,0};
struct point
{
int x;
int y;
int step;
}po;
int sx,sy,ex,ey;
int step,minstep;
void dfs(int x,int y)
{
if(x==ex&&y==ey) {minstep=min(step,minstep);return;}//
for(int i=0;i<4;++i)
{
int x1=dx[i]+x;
int y1=dy[i]+y;
if(x1>=0&&x1<=8&&y1>=0&&y1<=8&&!map[x1][y1])
{
step++;
map[x1][y1]=1;
dfs(x1,y1);
map[x1][y1]=0;// 。。。。
step--;
}
}
}
int main()
{
int T;
scanf("%d",&T);
while(T--)
{ step=0;
minstep=0xffffff;
scanf("%d%d%d%d",&sx,&sy,&ex,&ey);
map[sx][sy]=1;
dfs(sx,sy);
map[sx][sy]=0;
printf("%d
",minstep);
}return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
제1 6 장 파일 에서 텍스트 검색 도구: grep 명령 과 egrep 명령제1 6 장 파일 에서 텍스트 검색 도구: grep 명령 과 egrep 명령 옵션 grep 명령 파일 에서 단 어 를 검색 하면 명령 은 "match pattern"을 포함 하 는 텍스트 줄 을 되 돌려 줍 니 다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.