#include<iostream> #include<queue> #include<cstring> using namespace std; int n; int sx,sy,ex,ey; int mp[110][110]; int dx[4]={0,0,1,-1}; int dy[4]={1,-1,0,0}; int dist[110][110]; bool st[110][110]; struct node{ int x; int y; int num; // node(int x,int y,int n...