문제
Bessie the cow enjoys arts and crafts. In her free time, she has made () bracelets, conveniently numbered . The th bracelet is painted color out of a set of different colors. After constructing the bracelets, Bessie placed them on a table for display (which we can think of as the 2D plane). She was careful to arrange the bracelets to satisfy the following three conditions:
Every bracelet was a single closed polygonal chain -- a series of vertices (points) connected sequentially by line segments, where the first and last points are the same (Feel welcome to consult the wikipedia page for more detail: polygonal chain), No bracelet intersected itself (this corresponds to a "simple" polygonal chain); andNo two bracelets intersected.
Unfortunately, right after Bessie arranged the bracelets in such a careful manner, Farmer John drove by in his tractor, shaking the table and causing the bracelets to shift around and possibly break into multiple (not necessarily closed or simple) polygonal chains! Afterward, Bessie wanted to check whether the three conditions above still held. However, it was dark, so she couldn't see the bracelets anymore.
Fortunately, Bessie had a flashlight. She chose () vertical lines and for each line, she swept the beam of the flashlight along that line from to , recording the colors of all bracelets she saw in the order they appeared. Luckily, no beam crossed over any vertex of any polygonal chain or two line segments at the same time. Furthermore, for each beam, every color that appeared appeared exactly twice.
Can you help Bessie use this information to determine whether it is possible that the bracelets still satisfy all three of the conditions above?
입력
Each input case contains sub-cases () that must all solved independently to solve the full input case. Consecutive test cases are separated by newlines.
The first line of the input contains . Each of the sub-test cases then follow.
The first line of each sub-test case contains two integers and . Each sub-test case then contains additional lines. For each from to , the -th additional line contains an integer (, even), followed by integers (, every appears zero or two times). This means that when Bessie swept her flashlight from to , she encountered the colors in that order.
출력
For each sub-test case, print YES if it is possible for the three conditions above to be satisfied. Otherwise, print NO.
예제 입력 1
5
1 2
2 1 1
2 1 1
1 3
2 1 1
0
2 1 1
2 1
4 1 2 1 2
4 2
6 1 2 2 3 3 1
6 1 2 4 4 2 1
2 2
4 1 1 2 2
4 2 2 1 1
예제 출력 1
YES
NO
NO
YES
NO
점수
Test case 2 satisfies .Test cases 3-5 satisfy .Test cases 6-8 satisfy .Test cases 9-14 satisfy .Test cases 15-20 satisfy no additional constraints.
코드를 제출하려면 로그인이 필요합니다.
로그인