codeforces Round #238(div2) A解题报告

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.

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.


题目大意:

        给一个积木矩阵,有n列,每列有a[i]个,首先是重心在下方,然后突然把重心调到右边,然后再计算每一列有多少个


解法:

       模拟一下,当倒过来,就计算每一个积木停留在哪里,最后再输出.

       PS:以后拿到题目想到什么算法并且理论上可以过就写,不要再是否有更先进的算法,耽误时间.这题想是否有先进的算法,结果18MIN才提交= =,血的教训

#include <cstdio>

int n, len;
bool map[110][110];

void init() {
	scanf("%d",&n);
	for (int i = 1; i <= n; i++) {
		int tmp;

		scanf("%d",&tmp);
		if (tmp > len)  len = tmp;
		for (int j = 1; j <= tmp; j++)  map[i][j] = true;
		map[i][0] = true;
	}
}

void solve() {
	for (int j = 1; j <= len; j++) {
		for (int i = n-1; i >= 1; i--) {
			int k = i;

			while (map[k][j] && !map[k+1][j] && k < n) {
				map[k+1][j] = true;
				map[k][j] = false;
				k++;
			}
		}
	}

	for (int i = 1; i <= n; i++) {
		int j = 0;

		while (map[i][j+1]) j++;
		printf("%d ", j);
	}
		
}

int main() {
//	freopen("in.txt","r",stdin);
//	freopen("out.txt","w",stdout);

	init();
	solve();
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值