CF216B: Forming Teams(并查集)

B. Forming Teams
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

One day n students come to the stadium. They want to play football, and for that they need to split into teams, the teams must have an equal number of people.

We know that this group of people has archenemies. Each student has at most two archenemies. Besides, if student A is an archenemy to student B, then student B is an archenemy to student A.

The students want to split so as no two archenemies were in one team. If splitting in the required manner is impossible, some students will have to sit on the bench.

Determine the minimum number of students you will have to send to the bench in order to form the two teams in the described manner and begin the game at last.

Input

The first line contains two integers n and m (2 ≤ n ≤ 1001 ≤ m ≤ 100) — the number of students and the number of pairs of archenemies correspondingly.

Next m lines describe enmity between students. Each enmity is described as two numbers ai and bi (1 ≤ ai, bi ≤ nai ≠ bi) — the indexes of the students who are enemies to each other. Each enmity occurs in the list exactly once. It is guaranteed that each student has no more than two archenemies.

You can consider the students indexed in some manner with distinct integers from 1 to n.

Output

Print a single integer — the minimum number of students you will have to send to the bench in order to start the game.

Examples
input
5 4
1 2
2 4
5 3
1 4
output
1
input
6 2
1 4
3 4
output
0
input
6 6
1 2
2 3
3 1
4 5
5 6
6 4
output
2
思路:出现奇数环踢一个人,出场人数为奇数也要踢一个人。

# include <stdio.h>
int pre[101], num[101];

void init(int n)
{
    for(int i=0; i<=n; ++i)
    {
        pre[i] = i;
        num[i] = 1;
    }
}

int find(int x)
{
    if(x != pre[x])
        pre[x] = find(pre[x]);
    return pre[x];
}

int main()
{
    int n, m, x, y, ans;
    while(~scanf("%d%d",&n,&m))
    {
        ans = 0;
        init(n);
        while(m--)
        {
            scanf("%d%d",&x,&y);
            int px = find(x);
            int py = find(y);
            if(px != py)
            {
                pre[px] = py;
                num[py] += num[px];
            }
            else
                ans += num[px]&1;
        }
        ans += (n-ans)&1;
        printf("%d\n",ans);
    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值