比赛 |
20111109 |
评测结果 |
WWAAAAWAWW |
题目名称 |
游历校园 |
最终得分 |
50 |
用户昵称 |
wangmengyuan |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2011-11-09 11:16:16 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
int q[100001]={0},n,m;
int main()
{
freopen ("sent.in","r",stdin);
freopen ("sent.out","w",stdout);
scanf("%d%d",&n,&m);
for (int o=1;o<=m;o++)
{
int a,b;
scanf("%d%d",&a,&b);
q[a]++;
q[b]++;
}
int ji=0,ou=0;
for (int i=1;i<=n;i++)
{
if (q[i]%2==1)
{
ji++;
}
else
{
ou++;
}
}
if (ji==0||ji==2)
{
cout<<0;
}
else
{
cout<<((ji-2)>>1);
}
return 0;
}