結果
問題 | No.217 魔方陣を作ろう |
ユーザー | hayashitakeru |
提出日時 | 2018-03-10 05:02:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,353 bytes |
コンパイル時間 | 574 ms |
コンパイル使用メモリ | 66,684 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-11 19:32:31 |
合計ジャッジ時間 | 1,492 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> using namespace std; int main() { int n; cin >> n; const int n2 = n * n; auto magicSquare = [=](auto eval) { for (int y = 0; y < n; ++y) { for (int x = 0; x < n; ++x) { cout << eval(x, y); if (x < n - 1) { cout << ' '; } } cout << endl; } }; auto evenMagic = [=](int xbase, int stride) { return [=](int x, int y) { int ybase = ((xbase - x) * 2 + n) % n; int yadd = (y - ybase + n) % n * stride; return ((xbase - x) * n + n2 + yadd) % n2 + 1; }; }; if (n & 1) { magicSquare(evenMagic(n >> 1, n + 1)); } else if (n & 2) { magicSquare([even = evenMagic(n >> 2, (n >> 1) + 1), halfn = n >> 1](int x, int y) { const int halfx = x >> 1; const int halfy = y >> 1; const bool isSwap = halfx == halfn && (halfy == halfn || halfy == halfn + 1); static const int L[][2] = { { 4, 1 },{ 2, 3 } }; static const int U[][2] = { { 1, 4 },{ 2, 3 } }; static const int X[][2] = { { 1, 4 },{ 3, 2 } }; auto m = halfy <= halfn + 1 ? (halfy == halfn + 1) ^ isSwap ? U : L : X; const int val = (even(halfx, halfy) - 1) << 2; return val + m[y & 1][x & 1]; }); } else { magicSquare([n2, i = 0](int x, int y) mutable { const bool isDiagonal = (x & 3) == (y & 3) || 3 - (x & 3) == (y & 3); return isDiagonal ? ++i : n2 - i++; }); } return 0; }