#P3676. Tomorrow Genius 2008

Tomorrow Genius 2008

Description

Tomorrow Genius Contest is a traditional event of Daisy Hill Primary School for the purpose of promoting the spirit of its motto, "Mens et Manus" among the students. This year's rules are quite simple: Given N triangles, the contestants are asked to piece them together to make a rectangle with width W and height H as rapidly and possible. The contestants are allowed to move, rotate but not turn over the triangles. The first one who achieves the goal is the winner of the contest.

Of course the host doesn't want to hold a no-winner contest. So he asks you, the technology support of the contest, to determine whether a problem is solvable.

Input

The first line contains three integers, N (1 ≤ N ≤ 10), W (1 ≤ W ≤ 10), H (1 ≤ H ≤ 10).
The following N lines contain six integers x1, y1, x2, y2, x3, y3 (-100 ≤ xi, yi ≤ 100) each, describing the coordinates of the vertices of a triangle each.

Output

One line contains "YES" or "NO" indicating whether the problem is solvable.

<table border="1" width="39%" id="table1"><tbody><tr><td width="159"><b>Sample Input 1</b><p>6 5 5<br>0 0 0 3 4 0<br>0 0 0 3 4 0<br>0 0 0 3 4 0<br>0 0 0 3 4 0<br>0 0 0 1 1 0<br>0 0 0 1 1 0</p></td><td><b>Sample Input 2</b><p>5 5 5<br>0 0 0 3 4 0<br>0 0 0 3 4 0<br>0 0 0 3 4 0<br>0 0 0 3 4 0<br>0 0 0 1 2 0<br>&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>
<table border="1" width="39%" id="table2"><tbody><tr><td width="159"><b>Sample Output 1</b><p>YES</p></td><td><b>Sample Output 2</b><p>NO</p></td></tr></tbody></table>

Source

POJ Founder Monthly Contest – 2008.07.27

, Dagger