Time Limit: 7000MS | Memory Limit: 65536K | |
Total Submissions: 13954 | Accepted: 4673 |
Description
Knights can easily get over-excited during discussions-especially after a couple of drinks. After some unfortunate accidents, King Arthur asked the famous wizard Merlin to make sure that in the future no fights break out between the knights. After studying the problem carefully, Merlin realized that the fights can only be prevented if the knights are seated according to the following two rules:
- The knights should be seated such that two knights who hate each other should not be neighbors at the table. (Merlin has a list that says who hates whom.) The knights are sitting around a roundtable, thus every knight has exactly two neighbors.
- An odd number of knights should sit around the table. This ensures that if the knights cannot agree on something, then they can settle the issue by voting. (If the number of knights is even, then itcan happen that ``yes" and ``no" have the same number of votes, and the argument goes on.)
Merlin will let the knights sit down only if these two rules are satisfied, otherwise he cancels the meeting. (If only one knight shows up, then the meeting is canceled as well, as one person cannot sit around a table.) Merlin realized that this means that there can be knights who cannot be part of any seating arrangements that respect these rules, and these knights will never be able to sit at the Round Table (one such case is if a knight hates every other knight, but there are many other possible reasons). If a knight cannot sit at the Round Table, then he cannot be a member of the Knights of the Round Table and must be expelled from the order. These knights have to be transferred to a less-prestigious order, such as the Knights of the Square Table, the Knights of the Octagonal Table, or the Knights of the Banana-Shaped Table. To help Merlin, you have to write a program that will determine the number of knights that must be expelled.
Input
The input is terminated by a block with n = m = 0 .
Output
Sample Input
5 5
1 4
1 5
2 5
3 4
4 5
0 0
Sample Output
2
Hint
Source
// luogu-judger-enable-o2
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<stack>
//#define getchar() (S == T && (T = (S = BB) + fread(BB, 1, 1 << 15, stdin), S == T) ? EOF : *S++)
//char BB[1 << 15], *S = BB, *T = BB;
using namespace std;
const int MAXN=1e5+;
inline int read()
{
char c=getchar();int x=,f=;
while(c<''||c>''){if(c=='-')f=-;c=getchar();}
while(c>=''&&c<=''){x=x*+c-'';c=getchar();}
return x*f;
}
struct node
{
int u,v,nxt;
}edge[MAXN];
int head[MAXN],num=;
inline void AddEdge(int x,int y)
{
edge[num].u=x;
edge[num].v=y;
edge[num].nxt=head[x];
head[x]=num++;
}
int N,M;
int angry[][];
int dfn[MAXN],low[MAXN],tot=,point[MAXN],color[MAXN],in[MAXN],ans[MAXN];
stack<int>s;
void pre()
{
memset(angry,,sizeof(angry));
num=;
memset(head,-,sizeof(head));
memset(ans,,sizeof(ans));
memset(dfn,,sizeof(dfn));
memset(low,,sizeof(low));
}
bool MakeColor(int now,int how)
{
color[now]=how;
for(int i=head[now];i!=-;i=edge[i].nxt)
{
if(!in[edge[i].v]) continue;
if(!color[edge[i].v]&&!MakeColor(edge[i].v,how^)) return ;
else if(color[edge[i].v]==color[now]) return ;
}
return ;
}
void tarjan(int now,int fa)
{
dfn[now]=low[now]=++tot;
s.push(now);
for(int i=head[now];i!=-;i=edge[i].nxt)
{
if(!dfn[edge[i].v]&&edge[i].v!=fa)
{
tarjan(edge[i].v,now);
low[now]=min(low[now],low[edge[i].v]);
if(low[edge[i].v]>=dfn[now])
{
memset(in,,sizeof(in));//哪些在双联通分量里
memset(color,,sizeof(color));
int h=,cnt=;
do
{
h=s.top();s.pop();
in[h]=;
point[++cnt]=h;
}while(h!=edge[i].v);//warning
if(cnt<=) continue;//必须构成环
in[now]=;point[++cnt]=now;
if(MakeColor(now,)==)
for(int j=;j<=cnt;j++)
ans[point[j]]=;
}
}
if(edge[i].v!=fa) low[now]=min(low[now],dfn[edge[i].v]);
}
}
int main()
{
#ifdef WIN32
freopen("a.in","r",stdin);
#else
#endif
while(scanf("%d%d",&N,&M))
{
if(N==&&M==) break;
pre();
for(int i=;i<=M;i++)
{
int x=read(),y=read();
angry[x][y]=angry[y][x]=;
}
for(int i=;i<=N;i++)
for(int j=;j<=N;j++)
if(i!=j&&(!angry[i][j]))
AddEdge(i,j);
for(int i=;i<=N;i++)
if(!dfn[i])
tarjan(i,);
int out=;
for(int i=;i<=N;i++)
if(!ans[i]) out++;
printf("%d\n",out);
}
return ;
}