A12801 | Magic Grid
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let us define a magic grid to be a square matrix of integers of size $n \times n$ , satisfying the following conditions.
- All integers from $0$ to $(n^2 - 1)$ inclusive appear in the matrix exactly once.
- [Bitwise XOR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR) of all elements in a row or a column must be the same for each row and column.
You are given an integer $n$ which is a multiple of $4$ . Construct a magic grid of size $n \times n$ .
- All integers from $0$ to $(n^2 - 1)$ inclusive appear in the matrix exactly once.
- [Bitwise XOR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR) of all elements in a row or a column must be the same for each row and column.
You are given an integer $n$ which is a multiple of $4$ . Construct a magic grid of size $n \times n$ .
输入格式
The only line of input contains an integer $n$ ( $4 \leq n \leq 1000$ ). It is guaranteed that $n$ is a multiple of $4$ .
输出格式
Print a magic grid, i.e. $n$ lines, the $i$ -th of which contains $n$ space-separated integers, representing the $i$ -th row of the grid.
If there are multiple answers, print any. We can show that an answer always exists.
If there are multiple answers, print any. We can show that an answer always exists.
输入输出样例
输入 #1
4
输出 #1
8 9 1 13 3 12 7 5 0 2 4 11 6 10 15 14
输入 #2
8
输出 #2
19 55 11 39 32 36 4 52 51 7 35 31 12 48 28 20 43 23 59 15 0 8 16 44 3 47 27 63 24 40 60 56 34 38 6 54 17 53 9 37 14 50 30 22 49 5 33 29 2 10 18 46 41 21 57 13 26 42 62 58 1 45 25 61
In the first example, XOR of each row and each column is $13$ .
In the second example, XOR of each row and each column is $60$ .
In the second example, XOR of each row and each column is $60$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted