1101.Forming Teams
提交状态 耗时 内存 语言 提交时间

1101.Forming Teams

时间限制:1000MS  内存限制:65535KB
题目描述

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.

输入描述

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,binaibi) — 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.

输出描述
Print a single integer — the minimum number of students you will have to send to the bench in order to start the game.
示例
输入样例
5 4
1 2
2 4
5 3
1 4
输出样例
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
相关标签
登陆后才可以提交
测试输入
执行结果
控制台
代码编辑器配置
  • 字体设置
    调整适合你的字体大小。
  • 主题设置
    切换不同的代码编辑器主题,选择适合你的语法高亮。
  • 行宽限制
    设置每一行代码的最大字符个数,设置为0则不限制。