Vvvvvv

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

Platform games is an old video game genre, where you move across platforms hanging in the air. Vvvvvv is a platform game where you cannot jump, but instead are able to switch between regular gravity, which causes you to fall downwards, and anti-gravity, which causes you to fall upwards. There are only three buttons in the game: the gravitational switch (G), the go-left-button (V) and the go-right-button (H).

Your task is to find a sequence of button presses which takes you through a maze-like level with platforms and walls, from a given start position to a given final position. In order to receive full points, the sequence needs to be as short as possible.

Figure 1: The path given by the button presses given in the second sample.

입력

The first line of the input consists of three integers WW, HH, and NN: the width of the level, the height of the level, and the number of line segments. Thereafter follows NN lines, each with four integers x_1x\_1, y_1y\_1, x_2x\_2, y_2y\_2, where 0x_1,x_2W0 \le x\_1, x\_2 \le W and 0y_1,y_2H0 \le y\_1, y\_2 \le H. Each of these lines describe a line segments with end points (x_1,y_1)(x\_1, y\_1) and (x_2,y_2)(x\_2, y\_2). Every line segment is either horizontal or vertical, i.e. either y_1=y_2y\_1=y\_2 or x_1=x_2x\_1=x\_2 holds. The integer coordinate system can be said to divide the rectangular level into a grid, where the button V takes you one square to the left and H takes you one square to the right. If you are not standing on a platform after the movement you will fall (upwards or downwards) until you reach another platform. It is not possible to move to the left or right while falling. If you fall or walk out of the level, you lose the game. This also happens if you try to walk through a wall.

The start position is the lower left square, closest to the point (0, 0), with downwards gravity. The final position is the square in the upper right corner, closest to the point (W, H). There will always be a line segment under the start position and above the final position.

출력

If there is a solution, the program should print a string containing a letter for each button press (chosen from G, V and H). The sequence should take you from the start position to the final position, and has to be shorter than 1000010000 characters. You can arrive to the ending position with gravity in either direction, but you need to have stopped falling (see the third example below).

If there is no solution, the program should print the string "Inte" (without the quotation marks).

제한

  • W,H100W,H \le 100
  • N5000N \le 5000
  • The sequence needs to be as short as possible.