Codeforces Round #593——C.Labs(思维题)

题目描述:

题目传送门:https://codeforces.com/contest/1236/problem/C
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.

Input
The only line contains one number n (2≤n≤300).

Output
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.

Example
inputCopy
3
outputCopy
2 8 5
9 3 4
7 6 1
Note
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.

题目大意:

有n*n个连续的数(从1开始到n^2),需要将他们重新组合成n组,每组n个数字。要求每组有尽可能多的数字比其他组大。

解题思路:

参考小波大佬的思路,只需要将这n^2个数字从上到下从右至左依次S型排列就好。以3*3的数组为例,重排结果为:
1 6 7
2 5 8
3 4 9

这样就能保证每组有最多的数字比其他组大。思路太巧妙了,收下我的膝盖。

AC代码

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
using namespace std;
int n, a[305][305];
int main()
{
	scanf("%d", &n);
	int cnt = 1;
	for (int j = 1; j <= n; j++)
	{
		if(j%2==1)
		{
			for (int i = 1; i <= n; i++) 
			a[i][j] = cnt++;
		}
		else
		{
			for (int i = n; i >= 1; i--) 
			a[i][j] = cnt++;
		}
	}
	for (int i = 1; i <= n; i++)
	{
		for (int j = 1; j <= n; j++)
		{
			printf("%d ", a[i][j]);
		}
		printf("\n");
	}
	return 0;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值