#include #define INIT std::ios::sync_with_stdio(false);std::cin.tie(0); // VAR(int, x); #define VAR(type, ...)type __VA_ARGS__;Scan(__VA_ARGS__); template void Scan(T& t){std::cin >> t;} templatevoid Scan(First& first,Rest&...rest){std::cin>>first;Scan(rest...);} #define OUT(d) std::cout<<(d); #define FOUT(n, d) std::cout< c(n);for(auto& i:c)std::cin>>i; #define MAT(type, c, m, n) std::vector> c(m, std::vector(n));for(auto& r:c)for(auto& i:r)std::cin>>i; #define ALL(a) (a).begin(),(a).end() #define FOR(i, a, b) for(int i=(a);i<(b);++i) #define RFOR(i, a, b) for(int i=(b)-1;i>=(a);--i) #define REP(i, n) for(int i=0;i=0;--i) #define PAIR std::pair #define IN(a0, y, a1, b0, x, b1) (a0<=y && y(end-start).count();std::cerr<<"[Time:"<> mat(21, std::vector(21, 0)); std::queue que; que.push(POS(0, PAIR(0, 0))); while(!que.empty()){ POS now = que.front(); que.pop(); //mat[now.pos.first+10][now.pos.second+10] = now.depth; if(now.pos==obj){ OUT("YES")BR; return 0; } REP(j, 8){ POS t(now.depth+1, PAIR(now.pos.first+dx[j], now.pos.second+dy[j])); if(t.depth<3) que.push(t); //mat[t.pos.first+10][t.pos.second+10] = t.depth; if(t.pos==obj){ OUT("YES")BR; return 0; } } } //mat[10][10] = 9; //SHOWVECTOR2(mat); OUT("NO")BR; return 0; } ()); return 0; }