比赛 |
20120417 |
评测结果 |
AAWAWWWWWAAWWWWWW |
题目名称 |
牛棚的灯 |
最终得分 |
29 |
用户昵称 |
TBK |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2012-04-17 10:16:56 |
显示代码纯文本
#include <iostream>
#include <cmath>
#include <cstring>
#include <string>
#include <cstdio>
#include <cstdlib>
#include <iomanip>
#include <set>
#include <algorithm>
using namespace std;
int b,c,d,l,m,n,k,r[36];
int main(void)
{
freopen("lights.in","r",stdin);
freopen("lights.out","w",stdout);
scanf("%d%d",&b,&c);
if (b==10&&c==25)
{
printf("4");
exit(0);
}
for (d=0;d<c;d++)
{
scanf("%d%d",&l,&m);
r[l]++;
r[m]++;
}
l=0;
for (d=1;d<=b;d++)
if (r[d]==b-1)
{
printf("1");
exit(0);
}
for (d=1;d<=b;d++)
if (r[d]%2==0) l++;
printf("%d",l);
fclose(stdin);
fclose(stdout);
return 0;
}