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 n snacks flavors, numbered with integers 1,2,…,n . Bessie has n 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 n and k ( 2≤n≤105 , 1≤k≤105 ), the number of snacks and the number of guests.
The i -th of the following k lines contains two integers xi and yi ( 1≤xi,yi≤n , xi=yi ), favorite snack flavors of the i -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,4 . Guest 3 goes first and eats snacks 1 and 4 . Then the guest 1 goes and eats the snack 2 only, because the snack 1 has already been eaten. Similarly, the guest 2 goes up and eats the snack 3 only. All the snacks are gone, so the guest 4 will be sad.
In the second example, one optimal ordering is 2,1,3,5,4 . All the guests will be satisfied.