https://www.luogu.org/problemnew/show/P1746 思路:用广搜从起点开始,遍历所有可达的点,再往下遍历直到到达终点,所以能保证得到的结果一定是最优解 #include<bits/stdc++.h> using namespace std; int n,sx,sy,ex,ey;//sx.sy为起始坐标,ex.ey为目的地坐标 ][]; ]={,,-,}; ]={,,,-};//四个方向 struct node{//结构体 int x,y,step;//ste…