#P1635E. Cars

    ID: 6288 Type: RemoteJudge 2000ms 512MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>2-satconstructive algorithmsdfs and similardsugraphsgreedysortings*2200

Cars

No submission language available for this problem.

Description

There are nn cars on a coordinate axis OXOX. Each car is located at an integer point initially and no two cars are located at the same point. Also, each car is oriented either left or right, and they can move at any constant positive speed in that direction at any moment.

More formally, we can describe the ii-th car with a letter and an integer: its orientation oriiori_i and its location xix_i. If orii=Lori_i = L, then xix_i is decreasing at a constant rate with respect to time. Similarly, if orii=Rori_i = R, then xix_i is increasing at a constant rate with respect to time.

We call two cars irrelevant if they never end up in the same point regardless of their speed. In other words, they won't share the same coordinate at any moment.

We call two cars destined if they always end up in the same point regardless of their speed. In other words, they must share the same coordinate at some moment.

Unfortunately, we lost all information about our cars, but we do remember mm relationships. There are two types of relationships:

11 ii jjii-th car and jj-th car are irrelevant.

22 ii jjii-th car and jj-th car are destined.

Restore the orientations and the locations of the cars satisfying the relationships, or report that it is impossible. If there are multiple solutions, you can output any.

Note that if two cars share the same coordinate, they will intersect, but at the same moment they will continue their movement in their directions.

The first line contains two integers, nn and mm (2n2105;1mmin(2105,n(n1)2)(2 \leq n \leq 2 \cdot 10^5; 1 \leq m \leq min(2 \cdot 10^5, \frac{n(n-1)}{2}) — the number of cars and the number of restrictions respectively.

Each of the next mm lines contains three integers, typetype, ii, and jj (1type2;1i,jn;ij)(1 \leq type \leq 2; 1 \leq i,j \leq n; i≠j).

If typetype = 11, ii-th car and jj-th car are irrelevant. Otherwise, ii-th car and jj-th car are destined.

It is guaranteed that for each pair of cars, there are at most 11 relationship between.

In the first line, print either "YES" or "NO" (in any case), whether it is possible to restore the orientations and the locations of the cars satisfying the relationships.

If the answer is "YES", print nn lines each containing a symbol and an integer: oriiori_i and xix_i (orii{L,R};109xi109)(ori_i \in \{L, R\}; -10^9 \leq x_i \leq 10^9) — representing the information of the ii-th car.

If the orientation is left, then oriiori_i = LL. Otherwise oriiori_i = RR.

xix_i is the where the ii-th car is located. Note that all xix_i should be distinct.

We can prove that if there exists a solution, then there must be a solution satisfying the constraints on xix_i.

Input

The first line contains two integers, nn and mm (2n2105;1mmin(2105,n(n1)2)(2 \leq n \leq 2 \cdot 10^5; 1 \leq m \leq min(2 \cdot 10^5, \frac{n(n-1)}{2}) — the number of cars and the number of restrictions respectively.

Each of the next mm lines contains three integers, typetype, ii, and jj (1type2;1i,jn;ij)(1 \leq type \leq 2; 1 \leq i,j \leq n; i≠j).

If typetype = 11, ii-th car and jj-th car are irrelevant. Otherwise, ii-th car and jj-th car are destined.

It is guaranteed that for each pair of cars, there are at most 11 relationship between.

Output

In the first line, print either "YES" or "NO" (in any case), whether it is possible to restore the orientations and the locations of the cars satisfying the relationships.

If the answer is "YES", print nn lines each containing a symbol and an integer: oriiori_i and xix_i (orii{L,R};109xi109)(ori_i \in \{L, R\}; -10^9 \leq x_i \leq 10^9) — representing the information of the ii-th car.

If the orientation is left, then oriiori_i = LL. Otherwise oriiori_i = RR.

xix_i is the where the ii-th car is located. Note that all xix_i should be distinct.

We can prove that if there exists a solution, then there must be a solution satisfying the constraints on xix_i.

Samples

Sample Input 1

4 4
1 1 2
1 2 3
2 3 4
2 4 1

Sample Output 1

YES
R 0
L -3
R 5
L 6

Sample Input 2

3 3
1 1 2
1 2 3
1 1 3

Sample Output 2

NO