PivotOJ

Adolescent Architecture

시간 제한: 1000ms메모리 제한: 512MB출처: GCPC 2020BOJ 20901

문제

Little Peter is building a stack out of his toy blocks. He is using two kinds of blocks -- cubes and cylinders -- and wants to stack all of them into a single tower, where each block other than the topmost block has a single block standing on it. In order for the tower to be stable, the outline of each block needs to be fully contained within the outline of the block below when looking at the tower from above (the outlines are allowed to touch). Is it possible to construct such a tower, and if so, in which order do the blocks need to be stacked?

입력

The input consists of:

  • One line with an integer nn (1n1001 \le n \le 100), the number of blocks.
  • nn lines, each with the description of a block. The description consists of a string giving the type of block (cube or cylinder) and an integer aa (1a10001 \le a \le 1\,000) giving the size of the block -- if the block is a cube then aa is its side length, and if it is a cylinder then aa is the radius of its base (note that the height of the cylinder does not matter).

출력

If there is no way to construct the tower, output impossible. Otherwise output nn lines, giving the order in which to stack the blocks from top to bottom.

예제

예제 1

입력
3
cube 7
cube 11
cylinder 5
출력
cube 7
cylinder 5
cube 11

예제 2

입력
2
cube 5
cylinder 3
출력
impossible

예제 3

입력
3
cube 4
cylinder 2
cube 4
출력
cylinder 2
cube 4
cube 4
코드를 제출하려면 로그인하세요.