zoukankan      html  css  js  c++  java
  • C

    Problem description

    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.

    Examples

    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.

    解题思路:升序排列并输出,水过!

    AC代码:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 int main(){
     4     int n,a[105];
     5     cin>>n;
     6     for(int i=0;i<n;++i)cin>>a[i];
     7     sort(a,a+n);
     8     for(int i=0;i<n;++i)
     9         cout<<a[i]<<(i==n-1?"
    ":" ");
    10     return 0;
    11 }
  • 相关阅读:
    OGG实时同步Oracle数据到Kafka实施文档(供flink流式计算)
    Oracle exp导出加where指定条件
    oracle merge into的用法
    Oracle列转行函数LISTAGG() WITHIN GROUP ()的使用方法
    sql怎样查一个存储过程被谁调用
    Oracle JOB间隔时间详解
    如何在ORACLE下创建JOB,并且赋予ID号?
    DOS下查看进程对应的文件路径
    查询系统中运行的JOB
    plsql中书写一个简单的存储过程
  • 原文地址:https://www.cnblogs.com/acgoto/p/9162133.html
Copyright © 2011-2022 走看看