#include<bits/stdc++.h> using namespace std; using ll = long long; // 博主能力有限,如有错误欢迎指正 int dx[] ={-1,0,0,1}; // a s w d 每一次走的位置 **** 可以思考为什么这样 int dy[] ={0 ,1,-1,0}; void bfs(vector<vector<int>> &an ,const int x_s,const int y_s,const int x_t,const int y_t,const int n,const int m...