首页 > 其他 > 详细

CF A. Gravity Flip 3月22

时间:2014-03-23 08:47:50      阅读:342      评论:0      收藏:0      [点我收藏+]

A. Gravity Flip
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

bubuko.com,布布扣

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
4
3 2 1 2
output
1 2 2 3 
input
3
2 3 8
output
2 3 8 
Note

The first example case is shown on the figure. The top cube of the first column falls to the top of the last column; the top cube of the second column falls to the top of the third column; the middle cube of the first column falls to the top of the second column.

In the second example case the gravity switch does not change the heights of the columns.



排序一下过

/*******************************/
//by pilgrim
/*******************************/

#include <string>
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <vector>
using namespace std;

#define MAXN 105
int a[MAXN];

int main()
{
    int n;

    while(scanf("%d",&n)!=EOF)
    {
        memset(a,0,sizeof(a));
        for(int i=0;i<n;i++)
            scanf("%d",&a[i]);
        sort(a,a+n);

        for(int i=0;i<n;i++)
         i==n-1?printf("%d\n",a[i]):printf("%d ",a[i]);


    }
    return 0;
}


CF A. Gravity Flip 3月22,布布扣,bubuko.com

CF A. Gravity Flip 3月22

原文:http://blog.csdn.net/u011026968/article/details/21836219

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!