#include #include #include #include #include using namespace std; #define fir first #define sec second typedef long long LL; typedef pair PP; const int Maxn=205; const int dx[]={-2,-2,0,2,2,0}; const int dy[]={-1,1,2,1,-1,-2}; int N; int Stx,Sty; int Edx,Edy; bool vis[Maxn][Maxn]; int Ansn,Ans[Maxn*Maxn]; PP q[Maxn*Maxn]; int ql,qr; int fa[Maxn][Maxn]; bool Judge(int x,int y){ return (x>=0 && x=0 && y=1;--i) Print(Ans[i]); return 0; }