CF1450E.Capitalism

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A society can be represented by a connected, undirected graph of nn vertices and mm edges. The vertices represent people, and an edge (i,j)(i,j) represents a friendship between people ii and jj .

In society, the ii -th person has an income aia_i . A person ii is envious of person jj if aj=ai+1a_j=a_i+1 . That is if person jj has exactly 11 more unit of income than person ii .

The society is called capitalist if for every pair of friends one is envious of the other. For some friendships, you know which friend is envious of the other. For the remaining friendships, you do not know the direction of envy.

The income inequality of society is defined as max1inaimin1inai\max\limits_{1 \leq i \leq n} a_i - \min\limits_{1 \leq i \leq n} a_i .

You only know the friendships and not the incomes. If it is impossible for this society to be capitalist with the given knowledge, you should report about it. Otherwise, you should find an assignment of incomes in which the society is capitalist, and the income inequality is maximized.

输入格式

The first line contains two integers nn , mm ( 1n2001\le n\le 200 , n1m2000n-1\le m\le 2000 ) — the number of people and friendships, respectively.

The following mm lines describe the friendships. Each friendship is described by three integers ii , jj , bb ( 1i,jn,ij,0b11\le i, j\le n, i\ne j, 0\le b\le 1 ). This denotes that people ii and jj are friends. If b=1b=1 , we require that person ii is envious of person jj . If b=0b=0 , one friend should be envious of the other in either direction.

There is at most one friendship between each pair of people. It is guaranteed that if we consider the friendships as undirected edges, the graph is connected.

输出格式

Print "YES" if it is possible that the society is capitalist, or "NO" otherwise. You can print characters in any case (upper or lower).

If the answer is "YES", you should print two additional lines. In the first line, print the maximum possible income inequality. On the next line you should print nn integers a1,,ana_1,\ldots, a_n ( 0ai1060\le a_i\le 10^6 ), where aia_i denotes the income of the ii -th person.

We can prove that if there exists a solution, there exists one where 0ai1060\le a_i\le 10^6 for all ii .

If there exist multiple solutions, print any.

输入输出样例

  • 输入#1

    6 6
    1 2 0
    3 2 0
    2 5 0
    6 5 1
    6 3 0
    2 4 1

    输出#1

    YES
    3
    3 2 1 3 1 0
  • 输入#2

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

    输出#2

    NO
  • 输入#3

    1 0

    输出#3

    YES
    0
    0

说明/提示

In the first test, we can show that an income inequality greater than 33 is impossible for the given society. In the given answer with income inequality equal to 33 :

  • Person 22 is envious of person 11 .
  • Person 33 is envious of person 22 .
  • Person 55 is envious of person 22 .
  • Person 66 is envious of person 55 (the required direction is satisfied).
  • Person 66 is envious of person 33 .
  • Person 22 is envious of person 44 (the required direction is satisfied).

In the second test, we can show that there is no way to assign incomes to satisfy all requirements.

首页