E - 1 or 2 Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 500500

問題文

NN 枚のカードが一列に伏せられており、各カードには整数 11 または 22 が書かれています。

ii 番目のカードに書かれている整数を AiA_i とします。

あなたの目的は A1,A2,...,ANA_1, A_2, ..., A_N を当てることです。

次のことが分かっています。

  • i=1,2,...,Mi = 1, 2, ..., M について AXi+AYi+ZiA_{X_i} + A_{Y_i} + Z_i は偶数である。

あなたは魔法使いです。次の魔法を何度でも使うことができます。

魔法: コストを 11 払う。カードを 11 枚選び、そのカードに書かれた整数 AiA_i を知る。

最小で何コスト払えば、A1,A2,...,ANA_1, A_2, ..., A_N 全てを確実に当てることができるでしょうか。

なお、与えられる入力には矛盾がないことが保証されます。

制約

  • 入力は全て整数である。
  • 2N1052 \leq N \leq 10^5
  • 1M1051 \leq M \leq 10^5
  • 1Xi<YiN1 \leq X_i < Y_i \leq N
  • 1Zi1001 \leq Z_i \leq 100
  • (Xi,Yi)(X_i, Y_i) の組は互いに異なる。
  • 与えられる入力には矛盾がない(すなわち、条件を満たす A1,A2,...,ANA_1, A_2, ..., A_N が存在する)。

入力

入力は以下の形式で標準入力から与えられる。

NN MM
X1X_1 Y1Y_1 Z1Z_1
X2X_2 Y2Y_2 Z2Z_2
\vdots
XMX_M YMY_M ZMZ_M

出力

A1,A2,...,ANA_1, A_2, ..., A_N 全てを確実に当てるために払う必要のあるコストの合計の最小値を出力せよ。


入力例 1Copy

Copy
3 1
1 2 1

出力例 1Copy

Copy
2

11 枚目と 33 枚目のカードに対してそれぞれ 11 回ずつ魔法を使えば、A1,A2,A3A_1, A_2, A_3 全てを当てることができます。


入力例 2Copy

Copy
6 5
1 2 1
2 3 2
1 3 3
4 5 4
5 6 5

出力例 2Copy

Copy
2

入力例 3Copy

Copy
100000 1
1 100000 100

出力例 3Copy

Copy
99999

Score : 500500 points

Problem Statement

There are NN cards placed face down in a row. On each card, an integer 11 or 22 is written.

Let AiA_i be the integer written on the ii-th card.

Your objective is to guess A1,A2,...,ANA_1, A_2, ..., A_N correctly.

You know the following facts:

  • For each i=1,2,...,Mi = 1, 2, ..., M, the value AXi+AYi+ZiA_{X_i} + A_{Y_i} + Z_i is an even number.

You are a magician and can use the following magic any number of times:

Magic: Choose one card and know the integer AiA_i written on it. The cost of using this magic is 11.

What is the minimum cost required to determine all of A1,A2,...,ANA_1, A_2, ..., A_N?

It is guaranteed that there is no contradiction in given input.

Constraints

  • All values in input are integers.
  • 2N1052 \leq N \leq 10^5
  • 1M1051 \leq M \leq 10^5
  • 1Xi<YiN1 \leq X_i < Y_i \leq N
  • 1Zi1001 \leq Z_i \leq 100
  • The pairs (Xi,Yi)(X_i, Y_i) are distinct.
  • There is no contradiction in input. (That is, there exist integers A1,A2,...,ANA_1, A_2, ..., A_N that satisfy the conditions.)

Input

Input is given from Standard Input in the following format:

NN MM
X1X_1 Y1Y_1 Z1Z_1
X2X_2 Y2Y_2 Z2Z_2
\vdots
XMX_M YMY_M ZMZ_M

Output

Print the minimum total cost required to determine all of A1,A2,...,ANA_1, A_2, ..., A_N.


Sample Input 1Copy

Copy
3 1
1 2 1

Sample Output 1Copy

Copy
2

You can determine all of A1,A2,A3A_1, A_2, A_3 by using the magic for the first and third cards.


Sample Input 2Copy

Copy
6 5
1 2 1
2 3 2
1 3 3
4 5 4
5 6 5

Sample Output 2Copy

Copy
2

Sample Input 3Copy

Copy
100000 1
1 100000 100

Sample Output 3Copy

Copy
99999


2025-04-26 (Sat)
03:53:49 +00:00