您的位置:首页 > 其它

cf 625 C. K-special Tables (打表+规律)

2016-03-02 23:27 295 查看
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 × nis
called k-special if the following three conditions are satisfied:

every integer from 1 to n2 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.

Input

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.

Output

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.

Examples

input
4 1


output
28
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16


input
5 3


output
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


#include<bits/stdc++.h>
using namespace std;
int a[555][555];
int main()
{
int n,m,i,j,k;
while(cin>>n>>m) {
k=1;
for(i=1;i<=n;i++) {
for(j=1;j<m;j++)
a[i][j]=k++;
}
a[1][m]=n*n-(n-m);
for(i=2;i<=n;i++) a[i][m]=a[i-1][m]-(n-m+1);
for(i=1;i<=n;i++) {
for(j=m+1;j<=n;j++)
a[i][j]=a[i][j-1]+1;
}
int ans=0;
for(i=1;i<=n;i++) ans+=a[i][m];
cout<<ans<<endl;
for(i=1;i<=n;i++) {
for(j=1;j<=n;j++)
cout<<a[i][j]<<" ";
cout<<endl;
}
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: