結果
問題 | No.2212 One XOR Matrix |
ユーザー | みここ |
提出日時 | 2023-02-10 22:11:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,379 bytes |
コンパイル時間 | 523 ms |
コンパイル使用メモリ | 71,324 KB |
実行使用メモリ | 7,820 KB |
最終ジャッジ日時 | 2024-07-07 16:24:55 |
合計ジャッジ時間 | 2,305 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 4 ms
6,944 KB |
testcase_07 | AC | 9 ms
6,944 KB |
testcase_08 | AC | 28 ms
6,944 KB |
testcase_09 | AC | 107 ms
7,820 KB |
ソースコード
#include <iostream> using namespace std; int ans[1100][1100]; void draw(int x, int y, int n) { for(int c = 0; c < 4; c++) { ans[x][y] ^= 1; int u = (1 << n) - 1 - y; int v = x; swap(u, x); swap(v, y); } } int main() { int n; cin >> n; for(int c = 1; c < n; c++) { for(int i = 0; i < (1 << n); i++) { for(int j = 0; j < (1 << n); j++) { if((i >> c) & 1) { ans[i][j] ^= (1 << c); } if((j >> c) & 1) { ans[i][j] ^= (1 << (c + n)); } } } } for(int i = 0; i < (1 << n); i++) { for(int j = 0; j < (1 << n); j++) { if((i + j) % 2) { ans[i][j] ^= (1 << n); } } } for(int k = 0; k < (1 << (n - 2)) - 1; k++) { for(int l = 0; l < (k + 1) * 2; l++) { draw(l, k * 2 + 1, n); draw(k * 2 + 2, l, n); } } for(int l = 0; l < (1 << (n - 1)); l++) { draw(l, (1 << (n - 1)) - 1, n); } for(int i = 0; i < (1 << n); i++) { for(int j = 0; j < (1 << n); j++) { cout << ans[i][j] << " "; } cout << "\n"; } }