CF1236C.Labs
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
In order to do some research, n2 labs are built on different heights of a mountain. Let's enumerate them with integers from 1 to n2 , such that the lab with the number 1 is at the lowest place, the lab with the number 2 is at the second-lowest place, … , the lab with the number n2 is at the highest place.
To transport water between the labs, pipes are built between every pair of labs. A pipe can transport at most one unit of water at a time from the lab with the number u to the lab with the number v if u>v .
Now the labs need to be divided into n groups, each group should contain exactly n labs. The labs from different groups can transport water to each other. The sum of units of water that can be sent from a group A to a group B is equal to the number of pairs of labs ( u,v ) such that the lab with the number u is from the group A , the lab with the number v is from the group B and u>v . Let's denote this value as f(A,B) (i.e. f(A,B) is the sum of units of water that can be sent from a group A to a group B ).
For example, if n=3 and there are 3 groups X , Y and Z : X={1,5,6},Y={2,4,9} and Z={3,7,8} . In this case, the values of f are equal to:
- f(X,Y)=4 because of 5→2 , 5→4 , 6→2 , 6→4 ,
- f(X,Z)=2 because of 5→3 , 6→3 ,
- f(Y,X)=5 because of 2→1 , 4→1 , 9→1 , 9→5 , 9→6 ,
- f(Y,Z)=4 because of 4→3 , 9→3 , 9→7 , 9→8 ,
- f(Z,X)=7 because of 3→1 , 7→1 , 7→5 , 7→6 , 8→1 , 8→5 , 8→6 ,
- f(Z,Y)=5 because of 3→2 , 7→2 , 7→4 , 8→2 , 8→4 .
Please, divide labs into n groups with size n , such that the value minf(A,B) over all possible pairs of groups A and B ( A=B ) is maximal.
In other words, divide labs into n groups with size n , such that minimum number of the sum of units of water that can be transported from a group A to a group B for every pair of different groups A and B ( A=B ) as big as possible.
Note, that the example above doesn't demonstrate an optimal division, but it demonstrates how to calculate the values f for some division.
If there are many optimal divisions, you can find any.
输入格式
The only line contains one number n ( 2≤n≤300 ).
输出格式
Output n lines:
In the i -th line print n numbers, the numbers of labs of the i -th group, in any order you want.
If there are multiple answers, that maximize the minimum number of the sum of units of water that can be transported from one group the another, you can print any.
输入输出样例
输入#1
3
输出#1
2 8 5 9 3 4 7 6 1
说明/提示
In the first test we can divide 9 labs into groups {2,8,5},{9,3,4},{7,6,1} .
From the first group to the second group we can transport 4 units of water ( 8→3,8→4,5→3,5→4 ).
From the first group to the third group we can transport 5 units of water ( 2→1,8→7,8→6,8→1,5→1 ).
From the second group to the first group we can transport 5 units of water ( 9→2,9→8,9→5,3→2,4→2 ).
From the second group to the third group we can transport 5 units of water ( 9→7,9→6,9→1,3→1,4→1 ).
From the third group to the first group we can transport 4 units of water ( 7→2,7→5,6→2,6→5 ).
From the third group to the second group we can transport 4 units of water ( 7→3,7→4,6→3,6→4 ).
The minimal number of the sum of units of water, that can be transported from one group to another is equal to 4 . It can be proved, that it is impossible to make a better division.