poj1915 poj2243 Knight Moves

2023-12-05 23:58
文章标签 knight moves poj1915 poj2243

本文主要是介绍poj1915 poj2243 Knight Moves,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题意是:搜索骑士在棋盘上从起点到终点所走的最短步数,注意的是骑士不是一格一格走的,而是跨各走的;

思路: 就是广度优先搜索bfs,主要是找到骑士的走法

        int D[8][2] = {{-2,-1},{-1,-2},{1,-2},{2,-1},{-2,1},{-1,2},{1,2},{2,1}};

 

 

poj1915代码……

 

#include<iostream>
#include<queue>
using namespace std; // 624k  641ms bfs搞定,但是有点慢。

typedef struct
{
 int x,y;
 int sum;
}Map;

//int map[301][301];
int visit[301][301];
int D[8][2] = {{-2,-1},{-1,-2},{1,-2},{2,-1},{-2,1},{-1,2},{1,2},{2,1}};
int n,l;
int sx,sy,ex,ey;
int Min,x1,y1,i;

int bfs()
{
 queue<Map> Q;
 Map a,b;
 Min = 10000;
 a.x = sx;
 a.y = sy;
 a.sum = 0;
 Q.push(a);
 visit[sx][sy] = 1;
 while( !Q.empty())
 {
  a = Q.front();
  Q.pop();
  //if(a.x<0 || a.x>l || a.y<0 || a.y>l)
  // continue;
  if(a.x == ex && a.y == ey)
  {
   if(a.sum < Min)
    Min = a.sum;
  }
  for(i=0; i<8; i++)
  {
   x1 = a.x + D[i][0];
   y1 = a.y + D[i][1];
   if(x1>=0 && y1>=0 && x1<l && y1<l && !visit[x1][y1])
   {
    b.x = x1;
    b.y = y1;
    b.sum = a.sum + 1;
    Q.push(b);
    visit[x1][y1] = 1;
   }
  }
 }
 return Min;
}
int main()
{
 scanf("%d",&n);
 while(n--)
 {
  memset(visit,0,sizeof(visit));
  //memset(map,0,sizeof(map));
  scanf("%d",&l);
  scanf("%d%d",&sx,&sy);
  scanf("%d%d",&ex,&ey);
  printf("%d/n",bfs());
 }
 return 0;
}

 

poj2243代码……

这题不同之处是要转换下坐标;

 

#include<iostream>
#include<queue>
#include<cmath>
using namespace std; //176K 454MS  bfs()搞定……

typedef struct
{
 int x,y;
 int sum;
}Map;

int visit[9][9];
int D[8][2] = {{-2,-1},{-1,-2},{1,-2},{2,-1},{-2,1},{-1,2},{1,2},{2,1}}; //这个题目主要的是骑士的走法问题!!!
int sx,sy,ex,ey;
int Min;

int bfs()
{
 int x1,y1,i;
 queue<Map> Q;
 Map a,b;
 Min = 10000;
 a.x = sx;
 a.y = sy;
 a.sum = 0;
 Q.push(a);
 visit[sx][sy] = 1;
 while( !Q.empty())
 {
  a = Q.front();
  Q.pop();
  if(a.x == ex && a.y == ey)
  {
   if(a.sum < Min)
    Min = a.sum;
  }
  for(i=0; i<8; i++)
  {
   x1 = a.x + D[i][0];
   y1 = a.y + D[i][1];
   if(x1>0 && y1>0 && x1<=8 && y1<=8 && !visit[x1][y1])
   {
    b.x = x1;
    b.y = y1;
    b.sum = a.sum + 1;
    Q.push(b);
    visit[x1][y1] = 1;
   }
  }
 }
 return Min;
}
int main()
{
 char begin[5],end[5];
 while(scanf("%s %s",begin,end) != EOF)
 {
  memset(visit,0,sizeof(visit));
  sx = abs(begin[0]-'a'-8);  //转换为对应的坐标
  sy = begin[1]-'0';
  ex = abs(end[0]-'a'-8);
  ey = end[1]-'0';
  printf("To get from %s to %s takes %d knight moves./n",begin,end,bfs());
 }
 return 0;
}

这篇关于poj1915 poj2243 Knight Moves的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/459639

相关文章

Knight Moves -uva 简单的BFS遍历

昨天刚学了BFS的遍历,在uva上找了个题敲了出来,感觉还不错,最近敲代码挺有手感的,希望这种状态保持下去 #include<iostream>#include<stdio.h>#include<stdlib.h>#include<string.h>#define MAX_SIZE 10 + 5#define LEN 100 + 10using namespace std;in

[LeetCode] 935. Knight Dialer

题:https://leetcode.com/problems/shortest-bridge/description/ 题目 In a given 2D binary array A, there are two islands. (An island is a 4-directionally connected group of 1s not connected to any other

POJ-1915 Knight Moves 简单搜索

题目链接 #include<stdio.h>#include<iostream>#include<string>#include<string.h>#include<math.h>#include<algorithm>#include<vector>#include<queue>using namespace std;const int maxn = 305;

2024Dragon Knight CTF复现web

穿梭隐藏的密钥 首先看看页面的源代码,但是发现f12和鼠标右键都被禁用了 用ctrl+u查看,发现一个可疑页面 访问看看,发现还是只有一张图,查看源代码发现提示 扩展: Fuzz:Fuzz是一种基于黑盒的自动化软件模糊测试技术,简单的说一种懒惰且暴力的技术融合了常见的以及精心构建的数据文本进行网站、软件安全性测试。 通过字典爆破向目标发送随机或精心构造的数据作为计算机输入,来触发

导入from django.utils.six.moves.urllib import parse as urlparse报错

from django.utils.six.moves.urllib import parse as urlparse 改成 from urllib.parse import urlparse

python中导入utils.six.moves.urllib报错

1、Django3.0.3移除了six。 2.six可以单独安装:pip install six。另外,urllib 好像也独立出来了,引用时不需有前缀。 from django.utils.six.moves.urllib.request import urlopen from django.utils.six.moves.urllib.parse import urljoin 改为:

Knight Moves——双向宽搜初始值的赋法

下载LOFTER我的照片书 | Description Background Mr Somurolov, fabulous chess-gamer indeed, asserts that no one else but him can move knights from one position to another so fast. Can you beat him? The Prob

牛客国庆集训派对Day3 A Knight

题目:点击打开链接 题意:略。 分析:规律题,打了表半天没找出规律。。。 网友思路: 如果目的点不在第一象限,将其转化到第一象限,且另m>n 若2*n>m>n     若(n+m)是三的倍数,我可以通过走x个(1,2)和y个(2,1)到达,那么x+2x+2y+y=n+m,得x+y=(n+m)/3;     若(n+m)%3==1,我可以走这样一步使得(-2,1),使得目的地和起点的曼哈顿距

hdu 1372 Knight Moves(经典BFS)

题目:http://acm.hdu.edu.cn/showproblem.php?pid=1372 大意:至少要用多少步,骑士才能从给定位置到达另一个位置。(骑士的走法和象棋里的马的走法是一样的,均是日字型) Sample Input e2 e4a1 b2b2 c3a1 h8a1 h7h8 a1b1 c3f6 f6 Sample Output

uva 439 Knight Moves

原题: A friend of you is doing research on the Traveling Knight Problem (TKP) where you are to find the shortest closed tour of knight moves that visits each square of a given set of n squares on a ch