A10213 | K-special Tables
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
People do many crazy things to stand out in a crowd. Some of them dance, some learn by heart rules of Russian language, some try to become an outstanding competitive programmers, while others collect funny math objects.
Alis is among these collectors. Right now she wants to get one of $k$ -special tables. In case you forget, the table $n×n$ is called $k$ -special if the following three conditions are satisfied:
- every integer from $1$ to $n^{2}$ appears in the table exactly once;
- in each row numbers are situated in increasing order;
- the sum of numbers in the $k$ -th column is maximum possible.
Your goal is to help Alice and find at least one $k$ -special table of size $n×n$ . Both rows and columns are numbered from $1$ to $n$ , with rows numbered from top to bottom and columns numbered from left to right.
Alis is among these collectors. Right now she wants to get one of $k$ -special tables. In case you forget, the table $n×n$ is called $k$ -special if the following three conditions are satisfied:
- every integer from $1$ to $n^{2}$ appears in the table exactly once;
- in each row numbers are situated in increasing order;
- the sum of numbers in the $k$ -th column is maximum possible.
Your goal is to help Alice and find at least one $k$ -special table of size $n×n$ . Both rows and columns are numbered from $1$ to $n$ , with rows numbered from top to bottom and columns numbered from left to right.
输入格式
The first line of the input contains two integers $n$ and $k$ ( $1<=n<=500,1<=k<=n$ ) — the size of the table Alice is looking for and the column that should have maximum possible sum.
输出格式
First print the sum of the integers in the $k$ -th column of the required table.
Next $n$ lines should contain the description of the table itself: first line should contains $n$ elements of the first row, second line should contain $n$ elements of the second row and so on.
If there are multiple suitable table, you are allowed to print any.
Next $n$ lines should contain the description of the table itself: first line should contains $n$ elements of the first row, second line should contain $n$ elements of the second row and so on.
If there are multiple suitable table, you are allowed to print any.
输入输出样例
输入 #1
4 1
输出 #1
28 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
输入 #2
5 3
输出 #2
85 5 6 17 18 19 9 10 23 24 25 7 8 20 21 22 3 4 14 15 16 1 2 11 12 13
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted