博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforces Gravity Flip 题解
阅读量:5164 次
发布时间:2019-06-13

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

Little Chris is bored during his physics lessons (too easy), so he has built a toy box to keep himself occupied. The box is special, since it has the ability to change gravity.

There are n columns of toy cubes in the box arranged in a line. The i-th column contains ai cubes. At first, the gravity in the box is pulling the cubes downwards. When Chris switches the gravity, it begins to pull all the cubes to the right side of the box. The figure shows the initial and final configurations of the cubes in the box: the cubes that have changed their position are highlighted with orange.

Given the initial configuration of the toy cubes in the box, find the amounts of cubes in each of the n columns after the gravity switch!

Input

The first line of input contains an integer n (1 ≤ n ≤ 100), the number of the columns in the box. The next line contains n space-separated integer numbers. The i-th number ai (1 ≤ ai ≤ 100) denotes the number of cubes in the i-th column.

Output

Output n integer numbers separated by spaces, where the i-th number is the amount of cubes in the i-th column after the gravity switch.

Sample test(s)
input
43 2 1 2
output
1 2 2 3
非常有趣。非常有新意的题目。

原来能够这么改变gravity,形成这种效果的。有意思。

只是题解却是非常容易的,就是一个排序问题,O(∩_∩)O~,可是没看到这种题目还真没想过。

void GravityFlip(){	unsigned n;	cin>>n;	int *A = new int[n];	for (unsigned i = 0; i < n; i++)	{		cin>>A[i];	}	sort(A, A+n);	for (unsigned i = 0; i < n; i++)	{		cout<
<<' '; } delete [] A;}

转载于:https://www.cnblogs.com/llguanli/p/8412560.html

你可能感兴趣的文章
九度0J 1374 所有员工年龄排序
查看>>
listview初始化后仍为空
查看>>
无刷新分页
查看>>
SIFT算法
查看>>
git各种撤销操作
查看>>
每天努力一点之SQL
查看>>
UINavigationBar-使用总结
查看>>
夺命雷公狗jquery---11属性操作
查看>>
linux 常用命令
查看>>
display属性和属性值(18个属性值,常见面试题)
查看>>
微信小程序图片使用示例
查看>>
Ubuntu16.04+cuda8.0rc+opencv3.1.0+caffe+Theano+torch7搭建教程
查看>>
CSS基本相关内容--中秋特别奉献
查看>>
GitHub 优秀的 Android 开源项目
查看>>
让窗体自适应屏幕
查看>>
vim插件之marks
查看>>
常用 SQL 命令和ASP 编程
查看>>
win10的资源管理器,边框不见了
查看>>
CentOS 网络设置修改
查看>>
Bll
查看>>