시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 (추가 시간 없음) 2048 MB49313063.830%

문제

You are given a circular maze such as the ones shown in the figures.

Determine if it can be solved, i.e., if there is a path which goes from the center to the outside of the maze which does not touch any wall. The maze is described by $n$ walls. Each wall can be either circular or straight.

  • Circular walls are described by a radius $r$, the distance from the center, and two angles $θ_1$, $θ_2$ describing the beginning and the end of the wall in the clockwise direction. Notice that swapping the two angles changes the wall.
  • Straight walls are described by an angle $θ$, the direction of the wall, and two radii $r_1 < r_2$ describing the beginning and the end of the wall.

Angles are measured in degrees; the angle $0$ corresponds to the upward pointing direction; and angles increase clockwise (hence the east direction corresponds to the angle $90$).

입력

Each test contains multiple test cases. The first line contains an integer $t$ ($1 ≤ t ≤ 20$) — the number of test cases. The descriptions of the $t$ test cases follow.

The first line of each test case contains an integer $n$ ($1 ≤ n ≤ 5000$) — the number of walls.

Each of the following $n$ lines each contains a character (C for circular, and S for straight) and three integers:

  • either $r$, $θ_1$, $θ_2$ ($1 ≤ r ≤ 20$ and $0 ≤ θ_1, θ_2 < 360$ with $θ_1 \ne θ_2$) if the wall is circular,
  • or $r_1$, $r_2$ and $θ$ ($1 ≤ r_1 < r_2 ≤ 20$ and $0 ≤ θ < 360$) if the wall is straight.

It is guaranteed that circular walls do not overlap (but two circular walls may intersect at one or two points), and that straight walls do not overlap (but two straight walls may intersect at one point). However, circular and straight walls can intersect arbitrarily

출력

For each test case, print YES if the maze can be solved and NO otherwise.

예제 입력 1

2
5
C 1 180 90
C 5 250 230
C 10 150 140
C 20 185 180
S 1 20 180
6
C 1 180 90
C 5 250 230
C 10 150 140
C 20 185 180
S 1 20 180
S 5 10 0

예제 출력 1

YES
NO

Explanation of sample 1.

The two sample test cases correspond to the two mazes in the picture.

출처

ICPC > Regionals > Europe > Southwestern European Regional Contest > SWERC 2021-2022 L번

  • 문제를 만든 사람: Simon Mauras