-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGravityFlip.cpp
40 lines (30 loc) · 1.46 KB
/
GravityFlip.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* 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. */
#include <iostream>
#include<algorithm>
using namespace std;
int main()
{
int columns;
int box[100] = {};
cin >> columns;
for(int i = 0; i < columns; i++){
cin >> box[i];
}
sort(box, box + columns);
for(int i = 0; i < columns; i++){
cout << box[i] << " ";
}
return 0;
}