#D6061. Rendezvous on a Tetrahedron
Rendezvous on a Tetrahedron
Rendezvous on a Tetrahedron
Problem G Rendezvous on a Tetrahedron
One day, you found two worms and crawling on the surface of a regular tetrahedron with four vertices , , and . Both worms started from the vertex , went straight ahead, and stopped crawling after a while.
When a worm reached one of the edges of the tetrahedron, it moved on to the adjacent face and kept going without changing the angle to the crossed edge (Figure G.1).
Write a program which tells whether or not and were on the same face of the tetrahedron when they stopped crawling.
You may assume that each of the worms is a point without length, area, or volume.
Figure G.1. Crossing an edge
Incidentally, lengths of the two trails the worms left on the tetrahedron were exact integral multiples of the unit length. Here, the unit length is the edge length of the tetrahedron. Each trail is more than 0:001 unit distant from any vertices, except for its start point and its neighborhood. This means that worms have crossed at least one edge. Both worms stopped at positions more than 0:001 unit distant from any of the edges.
The initial crawling direction of a worm is specified by two items: the edge which is the first edge the worm encountered after its start, and the angle between the edge and the direction of the worm, in degrees.
Figure G.2. Trails of the worms corresponding to Sample Input 1
Figure G.2 shows the case of Sample Input 1. In this case, went over the edge and stopped on the face opposite to the vertex , while went over the edge and also stopped on the same face.
Input
The input consists of a single test case, formatted as follows.
() is the first edge the worm crossed after its start. is one of BC, CD or DB.
An integer () is the angle in degrees between edge and the initial direction of the worm on the face .
An integer () is the length of the trail of worm left on the surface, in unit lengths.
Output
Output YES when and only when the two worms stopped on the same face of the tetrahedron. Otherwise, output NO.
Sample Input 1
CD 30 1 DB 30 1
Sample Output 1
YES
Sample Input 2
BC 1 1 DB 59 1
Sample Output 2
YES
Sample Input 3
BC 29 20 BC 32 20
Sample Output 3
NO
Example
Input
CD 30 1 DB 30 1
Output
YES
inputFormat
Input 1
Figure G.2 shows the case of Sample Input 1. In this case, went over the edge and stopped on the face opposite to the vertex , while went over the edge and also stopped on the same face.
Input
The input consists of a single test case, formatted as follows.
() is the first edge the worm crossed after its start. is one of BC, CD or DB.
An integer () is the angle in degrees between edge and the initial direction of the worm on the face .
An integer () is the length of the trail of worm left on the surface, in unit lengths.
outputFormat
Output
Output YES when and only when the two worms stopped on the same face of the tetrahedron. Otherwise, output NO.
Sample Input 1
CD 30 1 DB 30 1
Sample Output 1
YES
Sample Input 2
BC 1 1 DB 59 1
Sample Output 2
YES
Sample Input 3
BC 29 20 BC 32 20
Sample Output 3
NO
Example
Input
CD 30 1 DB 30 1
Output
YES
样例
CD 30 1
DB 30 1
YES