#agc038d. [agc038_d]Unique Path

[agc038_d]Unique Path

Problem Statement

Snuke's mother gave Snuke an undirected graph consisting of NN vertices numbered 00 to N1N-1 and MM edges. This graph was connected and contained no parallel edges or self-loops.

One day, Snuke broke this graph. Fortunately, he remembered QQ clues about the graph. The ii-th clue (0leqileqQ10 \\leq i \\leq Q-1) is represented as integers Ai,Bi,CiA_i,B_i,C_i and means the following:

  • If Ci=0C_i=0: there was exactly one simple path (a path that never visits the same vertex twice) from Vertex AiA_i to BiB_i.
  • If Ci=1C_i=1: there were two or more simple paths from Vertex AiA_i to BiB_i.

Snuke is not sure if his memory is correct, and worried whether there is a graph that matches these QQ clues. Determine if there exists a graph that matches Snuke's memory.

Constraints

  • 2leqNleq1052 \\leq N \\leq 10^5
  • N1leqMleqNtimes(N1)/2N-1 \\leq M \\leq N \\times (N-1)/2
  • 1leqQleq1051 \\leq Q \\leq 10^5
  • 0leqAi,BileqN10 \\leq A_i,B_i \\leq N-1
  • AineqBiA_i \\neq B_i
  • 0leqCileq10 \\leq C_i \\leq 1
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN MM QQ A0A_0 B0B_0 C0C_0 A1A_1 B1B_1 C1C_1 vdots\\vdots AQ1A_{Q-1} BQ1B_{Q-1} CQ1C_{Q-1}

Output

If there exists a graph that matches Snuke's memory, print Yes; otherwise, print No.


Sample Input 1

5 5 3
0 1 0
1 2 1
2 3 0

Sample Output 1

Yes

For example, consider a graph with edges (0,1),(1,2),(1,4),(2,3),(2,4)(0,1),(1,2),(1,4),(2,3),(2,4). This graph matches the clues.


Sample Input 2

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

Sample Output 2

No

Sample Input 3

10 9 9
7 6 0
4 5 1
9 7 0
2 9 0
2 3 0
4 1 0
8 0 0
9 1 0
3 0 0

Sample Output 3

No