#include // cout, endl, cin #include // string, to_string, stoi #include // vector #include // min, max, swap, sort, reverse, lower_bound, upper_bound #include // pair, make_pair #include // tuple, make_tuple #include // int64_t, int*_t #include // printf #include // map #include // queue, priority_queue #include // set #include // stack #include // deque #include // unordered_map #include // unordered_set #include // bitset #include // isupper, islower, isdigit, toupper, tolower #include #include #include #include #include #include #include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repi(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep2(i, m, n) for (int i = (m); i < (n); ++i) #define drep2(i, m, n) for (int i = (m)-1; i >= (n); --i) #define drep(i, n) drep2(i, n, 0) //#define endl '\n' #define all(x) (x).begin(),(x).end() #define arr(x) (x).rbegin(),(x).rend() typedef long long ll; typedef unsigned long long ull; const ll inf=1e18; using graph = vector > ; using vi=vector; using P= pair; using vvi=vector; using vll=vector; using vvll=vector; using vp=vector

; using vvp=vector; using vd=vector; using vvd =vector; //using vs=vector; //string T="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; //string S="abcdefghijklmnopqrstuvwxyz"; //g++ main.cpp -std=c++17 -I . //cout < bool chmin(T& a, T b) { if (a > b) { a = b; return true; } else return false; } template bool chmax(T& a, T b) { if (a < b) { a = b; return true; } else return false; } struct edge{ int to; ll cost; edge(int to,ll cost) : to(to),cost(cost){} }; using ve=vector; using vve=vector; struct UnionFind { vector par, siz; UnionFind(int n) : par(n, -1) , siz(n, 1) { } int root(int x) { if (par[x] == -1) return x; else return par[x] = root(par[x]); } bool issame(int x, int y) { return root(x) == root(y); } bool unite(int x, int y) { x = root(x), y = root(y); if (x == y) return false; if (siz[x] < siz[y]) swap(x, y); par[y] = x; siz[x] += siz[y]; return true; } int size(int x) { return siz[root(x)]; } }; struct Compress{ vll a; map d,d2; int cnt; Compress() :cnt(0) {} void add(ll x){a.push_back(x);} void init(){ sets(a.begin(),a.end()); for(auto y:s)d[y]=cnt++; for(auto&y:a)y=d[y]; for(auto u:d)d2[u.second]=u.first; } ll to(ll x){return d[x];} //変換先 ll from(ll x){return d2[x];}//逆引き int size(){return cnt;} }; vll anss; vi dx={1,2},dy={2,1}; vi signx={1,1,-1,-1}; vi signy={-1,1,-1,1}; void solve(int test){ int n; cin >> n; vi x(n),y(n); rep(i,n)cin >> x[i] >> y[i]; set

st; rep(i,n){ rep(j,2)rep(l,4){ int nx=x[i]+dx[j]*signx[l]; int ny=y[i]+dy[j]*signy[l]; int ok=1; rep(s,n)if(x[s]==nx && y[s]==ny)ok=0; if(ok)st.insert(P(nx,ny)); } } vp p(st.begin(),st.end()); int si=p.size(); vvi g(si,vi(4)); auto is=[&](int x,int y,int nx,int ny,int dir){ int d=abs(x-nx)+abs(y-ny); if(dir==0){ if(x-nx==2 && abs(y-ny)==1)return 1; else return 0; } if(dir==1){ if(x-nx==-2 && abs(y-ny)==1)return 1; else return 0; } if(dir==2){ if(y-ny==2 && abs(x-nx)==1)return 1; else return 0; } if(dir==3){ if(y-ny==-2 && abs(x-nx)==1)return 1; else return 0; } return 0; }; rep(i,si)rep(dir,4){ int sx=p[i].first,sy=p[i].second; rep(j,n){ if(is(x[j],y[j],sx,sy,dir))g[i][dir]|=1<>t; rep(test,t)solve(test); for(auto u:anss){ cout << u << endl; } }