#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #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< 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(a, x, b) (a<=x && x<=b) #define IN2(a0, y, a1, b0, x, b1) (a0<=y && y(end-start).count();std::cerr<<"[Time:"<> res(n, std::vector(n)); std::vector> visited(n, std::vector(n, false)); int dir = 0; int x = 0, y = 0; REP(cnt, n*n) { res[y][x] = cnt + 1; visited[y][x] = true; if (cnt == n*n - 1) break; int tx = x + dx[dir % 4]; int ty = y + dy[dir % 4]; if (!IN2(0, ty, n, 0, tx, n) || visited[ty][tx]) { ++dir; --cnt; continue; } x = tx; y = ty; } REP(i, n) { REP(j, n) { SOUT(3, '0', res[i][j])SP; } BR; } return 0; }