HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Sections > Linear Data Structures: Arrays > problem:


50496 - Falling Bricks

Guest
• Review clarifications (1)

Section problems

• 51127 - Maze solver
• 50822 - Linked List
• 51126 - Dr. Fllanxha
• 50529 - Row to Table
• 50499 - Table to Row
• 50823 - Secret Number
• 50853 - Parking Place
• 50990 - Two Neighbors
• 50496 - Falling Bricks
• 51021 - Number of Nodes
• 50829 - Decode an Image
• 51044 - Number of Trees
• 50876 - He is my cousin
• 51098 - Rotate a matrix
• 50838 - Balanced Numbers
• 50851 - Repeated Numbers
• 51061 - The Longest Path

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Question by Ibrahim Mesecan.

Falling Bricks

You want to start as a programmer in a company. They have asked you to implement a game: Falling Bricks. In this game, you have a series bricks (integers) with some bombs (negative numbers) among them.

Question: Write a program that is going to read bricks information. And then, your program will print the wall after bricks fall down.

Input specification
You will be given an integer (n) the number of bricks where 1 ≤ n ≤ 2000. Then in the following n lines, you will be given integers where zero and positive numbers represent the bricks and negative numbers represent the bombs. The first brick is the brick at the bottom and the last brick is the one at the top.

Output specification
Show first the number of bombs and then, show the bricks after removing the holes. Start showing from the top brick.

Sample Input I
6
7
-2
-5
0
-1
3
Sample Output I
3
3 0 7

Explanation:
3 bombs have been removed. Then, the remaining bricks are 3 0 and 7.



Для отправки решений необходимо выполнить вход.

www.contester.ru