• codeforces Gravity Flip 题解


    版权声明:本文作者靖心,靖空间地址:http://blog.csdn.net/kenden23/,未经本作者同意不得转载。

    https://blog.csdn.net/kenden23/article/details/24832151

    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
    4
    3 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<<A[i]<<' ';
    	}
    
    	delete [] A;
    }




  • 相关阅读:
    Mybatis配置文件中Insert 元素标签添加配置有哪些呢?
    Mybatis配置文件中Select元素标签输入参数有多少种输入方式呢?
    Mybatis配置文件如何进行配置呢?
    Centos安装 Apache Benchmark
    本地连接阿里云上的mysql centos
    python 导出项目需要的库
    Nginx报错:nginx: [error] OpenEvent("Global gx_reload_14944") failed (2: The system cannot find the file specified)
    windows安装uwsgi报错 AttributeError: module 'os' has no attribute 'uname'
    P3346 [ZJOI2015]诸神眷顾的幻想乡(广义后缀自动机)
    P6139 【模板】广义后缀自动机(广义 SAM)
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10560048.html
  • Copyright © 2020-2023  润新知