CF1635E.Cars

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 .

输入输出样例

  • 输入#1

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

    输出#1

    YES
    R 0
    L -3
    R 5
    L 6
  • 输入#2

    3 3
    1 1 2
    1 2 3
    1 1 3

    输出#2

    NO
首页