题库练习 Capitalism
← 上一题 下一题 →

A13915 | Capitalism

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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

In society, the $i$ -th person has an income $a_i$ . A person $i$ is envious of person $j$ if $a_j=a_i+1$ . That is if person $j$ has exactly $1$ more unit of income than person $i$ .

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 $\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 $n$ , $m$ ( $1\le n\le 200$ , $n-1\le m\le 2000$ ) — the number of people and friendships, respectively.

The following $m$ lines describe the friendships. Each friendship is described by three integers $i$ , $j$ , $b$ ( $1\le i, j\le n, i\ne j, 0\le b\le 1$ ). This denotes that people $i$ and $j$ are friends. If $b=1$ , we require that person $i$ is envious of person $j$ . If $b=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 $n$ integers $a_1,\ldots, a_n$ ( $0\le a_i\le 10^6$ ), where $a_i$ denotes the income of the $i$ -th person.

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

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
C++ 编辑器
输入
输出