CF1209D.Cow and Snacks

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The legendary Farmer John is throwing a huge party, and animals from all over the world are hanging out at his house. His guests are hungry, so he instructs his cow Bessie to bring out the snacks! Moo!

There are nn snacks flavors, numbered with integers 1,2,,n1, 2, \ldots, n . Bessie has nn snacks, one snack of each flavor. Every guest has exactly two favorite flavors. The procedure for eating snacks will go as follows:

  • First, Bessie will line up the guests in some way.
  • Then in this order, guests will approach the snacks one by one.
  • Each guest in their turn will eat all remaining snacks of their favorite flavor. In case no favorite flavors are present when a guest goes up, they become very sad.

Help Bessie to minimize the number of sad guests by lining the guests in an optimal way.

输入格式

The first line contains integers nn and kk ( 2n1052 \le n \le 10^5 , 1k1051 \le k \le 10^5 ), the number of snacks and the number of guests.

The ii -th of the following kk lines contains two integers xix_i and yiy_i ( 1xi,yin1 \le x_i, y_i \le n , xiyix_i \ne y_i ), favorite snack flavors of the ii -th guest.

输出格式

Output one integer, the smallest possible number of sad guests.

输入输出样例

  • 输入#1

    5 4
    1 2
    4 3
    1 4
    3 4
    

    输出#1

    1
    
  • 输入#2

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

    输出#2

    0
    

说明/提示

In the first example, Bessie can order the guests like this: 3,1,2,43, 1, 2, 4 . Guest 33 goes first and eats snacks 11 and 44 . Then the guest 11 goes and eats the snack 22 only, because the snack 11 has already been eaten. Similarly, the guest 22 goes up and eats the snack 33 only. All the snacks are gone, so the guest 44 will be sad.

In the second example, one optimal ordering is 2,1,3,5,42, 1, 3, 5, 4 . All the guests will be satisfied.

首页