Codeforce #541(Div.2) C. Birthday (思维、暴力)

Birthday

题目大意:(文末原题)

给出n个整数,使两两之间差值尽量小围成一个环,输出这个环;

思路:

将n个数排列,使最大的在中间,往两端减少,就可满足题意;

(也可以直接隔一项输出,再从末尾开始隔一项输出)

代码:

#include <iostream>
#include <algorithm>
using namespace std;

int main() {
	int n;
	cin >> n;
	int a[200], ans[200];
	
	for(int i = 0; i < n; i++) {
		cin >> a[i];
	}
	
	sort(a, a + n);
	int b = 0, e = n - 1;
	
	for(int i = 0; i < n; i++) {
		if(i % 2) 
			ans[e--] = a[i];
		else 
			ans[b++] = a[i];
	}
	
	for(int i = 0; i < n; i++) {
		cout << ans[i] << " ";
	}
	
	return 0;
}

原题:

题目:

Cowboy Vlad has a birthday today! There are nn children who came to the celebration. In order to greet Vlad, the children decided to form a circle around him. Among the children who came, there are both tall and low, so if they stand in a circle arbitrarily, it may turn out, that there is a tall and low child standing next to each other, and it will be difficult for them to hold hands. Therefore, children want to stand in a circle so that the maximum difference between the growth of two neighboring children would be minimal possible.

Formally, let's number children from 1 to n in a circle order, that is, for every i child with number i will stand next to the child with number i+1, also the child with number 1 stands next to the child with number nn. Then we will call the discomfort of the circle the maximum absolute difference of heights of the children, who stand next to each other.

Please help children to find out how they should reorder themselves, so that the resulting discomfort is smallest possible.

输入:

The first line contains a single integer n (2≤n≤100) — the number of the children who came to the cowboy Vlad's birthday.

The second line contains integers a1,a2,…,an (1≤ai≤10^9) denoting heights of every child.

输出:

Print exactly nn integers — heights of the children in the order in which they should stand in a circle. You can start printing a circle with any child.

If there are multiple possible answers, print any of them.

样例:

Input:

5
2 1 1 3 2

Output:

1 2 3 2 1

Input:

3
30 10 20

Output:

10 20 30

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值