问题4205--Picture Validator

4205: Picture Validator

[命题人 : ]
时间限制 : 3.000 sec  内存限制 : 128 MB

题目描述

Karel wants to register his robot Karel for a robot contest. The aim of the contest is to draw a picture using a program composed of the following instructions:
• L X rel Y rel — draw a line segment between the current robot position and the given relative coordinates. The robot moves to the end point of the segment.
• M X rel Y rel – move the current position by the given relative offset without drawing a line.
This sounds like a nice contest problem, doesn’t it? We want to give you an idea what it is like to organize a programming contest. All contests held at the Czech Technical University (since the very first one on May 13, 1995) always employed the automated judging of submissions. The output of a contestants’ program is compared with the correct answer by a computer, without the need of human intervention. This may seem obvious today but we should realize that back in the old years, many programming contests in the world used human judges to issue the final verdict. Manual judging then continued for many years in many other regions.
With some contest problems, there is more than one correct answer. In these cases, a special program (called validator) has to be prepared to review the submission output and to issue a final verdict. Do you want to try out what it is like to write such a program?
Your task is to prepare a validator for the problem described above. The validator reads a picture generated by a contestants’ submission and decides whether it is equivalent to another picture — the correct answer prepared by judges.
Two pictures are considered equivalent if they are composed of the same visible line segments. Note however that the drawing instructions may differ. For instance, some of the segments may be divided into several shorter segments, or even drawn repeatedly. Also note that pictures with a different scale or rotation are considered different.

输入

The input contains several test cases. Each test case consists of two pictures. Each picture starts with a row containing one positive integer N, the number of drawing instructions to follow (1 ≤ N ≤ 5000). Then there are N lines, each containing one instruction. The instruction consists of an uppercase letter, one space and two integers X i , Y i separated with another space (|X i |,|Y i | ≤ 1000). The first letter will either be “L” or “M”.
There is one empty line after each test case. You may assume that no real (absolute) coordinate will be further than 30000 in any direction from the picture starting point.

输出

For each test case, print one line containing either “YES” if the two pictures are equivalent, or “NO” if they differ.

样例输入 Copy

2
L 1 1
L 1 1
1
L -2 -2
2
L 1 1
L 1 1
1
L 3 3
5
L 1 0
L 1 0
L 0 5
L 0 -5
L 2 0
3
L 0 5
M -2 -5
L 4 0

样例输出 Copy

YES
NO
YES

来源/分类