結果
問題 | No.2212 One XOR Matrix |
ユーザー | tnakao0123 |
提出日時 | 2024-07-05 13:36:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,356 bytes |
コンパイル時間 | 442 ms |
コンパイル使用メモリ | 45,568 KB |
実行使用メモリ | 7,028 KB |
最終ジャッジ日時 | 2024-07-05 13:37:01 |
合計ジャッジ時間 | 2,790 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
/* -*- coding: utf-8 -*- * * 2212.cc: No.2212 One XOR Matrix - yukicoder */ #include<cstdio> #include<algorithm> using namespace std; /* constant */ const int MAX_N = 10; const int NBITS = 1 << MAX_N; const int M = 4; const int MMSK = (1 << M) - 1; const int bs[M][M] = { { 7, 14, 0, 8}, { 4, 12, 2, 11}, {15, 9, 6, 1}, {13, 10, 5, 3}, }; /* typedef */ /* global variables */ int as[NBITS][NBITS]; /* subroutines */ void check(int n) { int nbits = 1 << n; for (int i = 0; i < nbits; i++) { int x = 0; for (int j = 0; j < nbits; j++) x ^= as[i][j]; printf(" %d", x); } putchar('\n'); for (int j = 0; j < nbits; j++) { int x = 0; for (int i = 0; i < nbits; i++) x ^= as[i][j]; printf(" %d", x); } putchar('\n'); } /* main */ int main() { int n; scanf("%d", &n); if (n & 1) { puts("-1"); return 0; } int nbits = 1 << n; for (int i = 0, x = 0; i < nbits; i++) for (int j = 0; j < nbits; j++, x++) as[i][j] = x; //check(n); for (int i0 = 0; i0 < nbits; i0 += M) for (int i = 0; i < M; i++) for (int j = 0; j < M; j++) as[i0 + i][i0 + j] = (as[i0 + i][i0 + j] & ~MMSK) | bs[i][j]; //check(n); for (int i = 0, x = 0; i < nbits; i++) for (int j = 0; j < nbits; j++, x++) printf("%d%c", as[i][j], (j + 1 < nbits) ? ' ' : '\n'); return 0; }