CF60C.Mushroom Strife

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Pasha and Akim were making a forest map — the lawns were the graph's vertexes and the roads joining the lawns were its edges. They decided to encode the number of laughy mushrooms on every lawn in the following way: on every edge between two lawns they wrote two numbers, the greatest common divisor (GCD) and the least common multiple (LCM) of the number of mushrooms on these lawns. But one day Pasha and Akim had an argument about the laughy mushrooms and tore the map. Pasha was left with just some part of it, containing only mm roads. Your task is to help Pasha — use the map he has to restore the number of mushrooms on every lawn. As the result is not necessarily unique, help Pasha to restore any one or report that such arrangement of mushrooms does not exist. It is guaranteed that the numbers on the roads on the initial map were no less that 11 and did not exceed 10610^{6} .

输入格式

The first line contains two numbers nn and mm () which are the numbers of lawns and roads we know about. Each of the following mm lines contains four numbers which are the numbers of lawns the road connects, the GCD and the LCM of the numbers of mushrooms on these lawns ( 1<=GCD,LCM<=1061<=GCD,LCM<=10^{6} ).

It is guaranteed, that no road connects lawn to itself, and no two lawns are connected by more than one road.

输出格式

The answer should contain "YES" or "NO" on the first line, saying whether it is possible or not to perform the arrangement. If the answer is "YES", print on the following line nn numbers which are the numbers of mushrooms on the corresponding lawns.

输入输出样例

  • 输入#1

    1 0
    

    输出#1

    YES
    1 
  • 输入#2

    2 1
    1 2 1 3
    

    输出#2

    YES
    1 3 
  • 输入#3

    3 2
    3 2 1 2
    3 1 1 10
    

    输出#3

    YES
    5 1 2 
  • 输入#4

    2 1
    1 2 3 7
    

    输出#4

    NO
    
首页