CF1850H.The Third Letter

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In order to win his toughest battle, Mircea came up with a great strategy for his army. He has nn soldiers and decided to arrange them in a certain way in camps. Each soldier has to belong to exactly one camp, and there is one camp at each integer point on the xx -axis (at points ,2,1,0,1,2,\cdots, -2, -1, 0, 1, 2, \cdots ).

The strategy consists of mm conditions. Condition ii tells that soldier aia_i should belong to a camp that is situated did_i meters in front of the camp that person bib_i belongs to. (If di<0d_i < 0 , then aia_i 's camp should be di-d_i meters behind bib_i 's camp.)

Now, Mircea wonders if there exists a partition of soldiers that respects the condition and he asks for your help! Answer "YES" if there is a partition of the nn soldiers that satisfies all of the mm conditions and "NO" otherwise.

Note that two different soldiers may be placed in the same camp.

输入格式

The first line contains a single integer tt ( 1t1001 \leq t \leq 100 ) — the number of test cases.

The first line of each test case contains two positive integers nn and mm ( 2n21052 \leq n \leq 2 \cdot 10^5 ; 1mn1 \leq m \leq n ) — the number of soldiers, and the number of conditions respectively.

Then mm lines follow, each of them containing 33 integers: aia_i , bib_i , did_i ( aibia_i \neq b_i ; 1ai,bin1 \leq a_i, b_i \leq n ; 109di109-10^9 \leq d_i \leq 10^9 ) — denoting the conditions explained in the statement. Note that if did_i is positive, aia_i should be did_i meters in front of bib_i and if it is negative, aia_i should be di-d_i meters behind bib_i .

Note that the sum of nn over all test cases doesn't exceed 21052 \cdot 10^5 .

输出格式

For each test case, output "YES" if there is an arrangement of the nn soldiers that satisfies all of the mm conditions and "NO" otherwise.

输入输出样例

  • 输入#1

    4
    5 3
    1 2 2
    2 3 4
    4 2 -6
    6 5
    1 2 2
    2 3 4
    4 2 -6
    5 4 4
    3 5 100
    2 2
    1 2 5
    1 2 4
    4 1
    1 2 3

    输出#1

    YES
    NO
    NO
    YES

说明/提示

For the first test case, we can partition the soldiers into camps in the following way: soldier:

  • Soldier 11 in the camp with the coordinate x=3x = 3 .
  • Soldier 22 in the camp with the coordinate x=5x = 5 .
  • Soldier 33 in the camp with the coordinate x=9x = 9 .
  • Soldier 44 in the camp with the coordinate x=11x = 11 .

For the second test case, there is no partition that can satisfy all the constraints at the same time.

For the third test case, there is no partition that satisfies all the constraints since we get contradictory information about the same pair.

For the fourth test case, in order to satisfy the only condition, a possible partition is:

  • Soldier 11 in the camp with the coordinate x=10x = 10 .
  • Soldier 22 in the camp with the coordinate x=13x = 13 .
  • Soldier 33 in the camp with the coordinate x=2023x = -2023 .
  • Soldier 44 in the camp with the coordinate x=2023x = -2023 .
首页