博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforces 652B B. z-sort(水题)
阅读量:4988 次
发布时间:2019-06-12

本文共 1524 字,大约阅读时间需要 5 分钟。

题目链接:

time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

A student of z-school found a kind of sorting called z-sort. The array a with n elements are z-sorted if two conditions hold:

  1. ai ≥ ai - 1 for all even i,
  2. ai ≤ ai - 1 for all odd i > 1.

For example the arrays [1,2,1,2] and [1,1,1,1] are z-sorted while the array [1,2,3,4] isn’t z-sorted.

Can you make the array z-sorted?

Input

The first line contains a single integer n (1 ≤ n ≤ 1000) — the number of elements in the array a.

The second line contains n integers ai (1 ≤ ai ≤ 109) — the elements of the array a.

Output

If it's possible to make the array a z-sorted print n space separated integers ai — the elements after z-sort. Otherwise print the only word "Impossible".

Examples
input
4 1 2 2 1
output
1 2 1 2
input
5 1 3 2 2 5
output
1 5 2 3 2 题意:把数列变成要求的那样,太简单就不好说了; AC代码:
/*2014300227    652B - 6    GNU C++11    Accepted    15 ms    2168 KB*/#include 
using namespace std;int a[2000];int main(){ int n; scanf("%d",&n); for(int i=1;i<=n;i++) { scanf("%d",&a[i]); } sort(a+1,a+n+1); if(n%2==0) { for(int i=1;i<=n/2;i++) { printf("%d ",a[i]); printf("%d ",a[n-i+1]); } } else { for(int i=1;i<=n/2;i++) { printf("%d ",a[i]); printf("%d ",a[n-i+1]); } printf("%d",a[n/2+1]); } return 0;}

 

 

转载于:https://www.cnblogs.com/zhangchengc919/p/5322741.html

你可能感兴趣的文章
Oracle sql优化
查看>>
sweetalert 快速显示两个提示, 第二个显示不出的问题
查看>>
Redis 键(key)
查看>>
granger Z-score问题
查看>>
mybatis系列-07-输出映射
查看>>
将本地项目和远程git仓库相连接
查看>>
cocos3.12预编译android报错RuntimeJsImpl.cpp
查看>>
未解决的题-幂函数的奇偶性
查看>>
wc移植sae笔记
查看>>
<welcome-file-list>标签作用,怎样使用
查看>>
Codeforces Round #311 (Div. 2) E. Ann and Half-Palindrome 字典树/半回文串
查看>>
Codeforces Round #115 B. Plane of Tanks: Pro 水题
查看>>
BZOJ 2648: SJY摆棋子 kdtree
查看>>
Entity Framework
查看>>
第一阶段结对作业验收小学生四则运算
查看>>
理解python可变类型vs不可变类型,深拷贝vs浅拷贝
查看>>
添加数据库的Maven依赖(SqlServer,Oracle)
查看>>
Python Revisited (变量)
查看>>
从本质看海明码——海明码的由来
查看>>
线段树+等差/等比
查看>>