PivotOJ

Faster Than Light

시간 제한: 10000ms메모리 제한: 1024MB출처: NWERC 2022BOJ 26179

문제

Faster Than Light (FTL) is a space-based top-down strategy game by Subset Games. You control a ship which belongs to the Galactic Federation and have to fight a ship of the Rebel Faction. The enemies' spaceship is represented by a set of axis-aligned non-intersecting rectangles in the plane which correspond to the rooms of the ship. Your ship is close to destruction, but your weapon, the hull beam, is ready to fire.

The hull beam shoots an infinite beam in a direction of your choice that deals one damage to each room it intersects. Coincidentally, the enemies' ship consists of nn rooms and has exactly nn health points. Thus, you need to hit every room to destroy the enemy before they destroy you. Now you quickly need to check if it is possible to position the beam in such a way. Note that the beam deals damage even when it only touches the boundary of a room. See Figure F.1 for an example.

Figure F.1: Illustration of Sample Input 1, which consists of five grey rooms. The hull beam in red hits all rooms and is the only valid solution in this case.

입력

The input consists of:

  • One line with an integer nn (1n2105)(1\leq n \leq 2\cdot10^5), the number of rooms.
  • nn lines, each with four integers x1x_1, y1y_1, x2x_2, and y2y_2 (0x1<x2109{0\leq x_1<x_2\leq10^9} and 0y1<y2109{0\leq y_1<y_2\leq10^9}), describing the coordinates of two opposite corners (x1x_1,y1y_1) and (x2x_2,y2y_2) of a room.

It is guaranteed that no two rooms have a common interior point.

출력

If it is possible for the hull beam to pass through all rooms at once, output "possible". Otherwise, output "impossible".

예제

예제 1

입력
5
1 3 3 4
2 2 4 3
4 1 5 3
5 2 7 3
6 3 8 4
출력
possible

예제 2

입력
4
1 1 2 2
1 3 2 4
3 1 4 2
3 3 4 4
출력
impossible

예제 3

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