UVALive 3523Knights of the Round Table(二分图+双连通分量)

Description

Being a knight is a very attractive career: searching for the Holy Grail, saving damsels in distress, and drinking with the other knights are fun things to do. Therefore, it is not very surprising that in recent years the kingdom of King Arthur has experienced an unprecedented increase in the number of knights. There are so many knights now, that it is very rare that every Knight of the Round Table can come at the same time to Camelot and sit around the round table; usually only a small group of the knights isthere, while the rest are busy doing heroic deeds around the country.

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 contains several blocks of test cases. Each case begins with a line containing two integers1n1000and1m1000000. The numbernis the number of knights. The nextmlines describe which knight hates which knight. Each of thesemlines contains two integersk1andk2, which means that knight numberk1and knight numberk2hate each other (the numbersk1andk2are between 1 andn).

The input is terminated by a block withn=m= 0.

Output

For each test case you have to output a single integer on a separate line: the number of knights that have to be expelled.

Sample Input

5 51 41 52 53 44 50 0

Sample Output

2

题意:给你n,m n为有多少人,m为有多少组关系,每组关系代表两人相互憎恨

思路:还是比较好想的,按照相互憎恨的人,实际上我们可以把相互不憎恨的人连接起来,判断一个连通分量的双连通分量是否是二分图,,如果不是则将其中所有点标记为可以参加会议的,说明这个人不可以参加这次会议。

还是比较搓,虽然想到了思路,但是最终参照了模板才打出来

AC代码:

#include<cstdio>#include<cstring>#include<stack>#include<vector>#include<algorithm>using namespace std;#define maxn 1005struct Edge{Edge() {}Edge(int uu, int vv) {u = uu;v = vv;}int u, v;};int pre[maxn],iscut[maxn],bccno[maxn],dfs_clock,bcc_cnt;vector<int> G[maxn], bcc[maxn];stack<Edge>S;int dfs(int u,int fa){//printf("hehe\n");int lowu=pre[u]=++dfs_clock;int child=0;for(int i=0;i<G[u].size();i++){int v=G[u][i];Edge e(u, v);if(!pre[v]){S.push(e);child++;int lowv=dfs(v,u);lowu=min(lowu,lowv);if(lowv>=pre[u]){iscut[u]=1;bcc_cnt++;bcc[bcc_cnt].clear();while(1){Edge x=S.top();S.pop();if(bccno[x.u]!=bcc_cnt){bcc[bcc_cnt].push_back(x.u);bccno[x.u]=bcc_cnt;}if(bccno[x.v]!=bcc_cnt){bcc[bcc_cnt].push_back(x.v);bccno[x.v]=bcc_cnt;}if(x.u==u&&x.v==v)break;}}}else if(pre[v]<pre[u]&&v!=fa){S.push(e);lowu=min(lowu,pre[v]);}}if(fa<0&&child==1)iscut[u]=0;return lowu;}void find_bcc(int n){memset(pre,0,sizeof(pre));memset(iscut,0,sizeof(iscut));memset(bccno,0,sizeof(bccno));dfs_clock=bcc_cnt=0;for(int i=0;i<n;i++)if(!pre[i])dfs(i,-1);}int odd[maxn],color[maxn];bool bipartite(int u,int b){for(int i=0;i<G[u].size();i++){int v=G[u][i];if(bccno[v]!=b)continue;if(color[v]==color[u])return false;if(!color[v]){color[v]=3-color[u];if(!bipartite(v,b))return false;}}return true;}int a[maxn][maxn];int main(){int n,m;//freopen("in.cpp","r",stdin);//freopen("out.cpp","w",stdout);while(scanf("%d %d",&n,&m)==2&&n){for(int i=0;i<n;i++)G[i].clear();memset(a,0,sizeof(a));for(int i=0;i<m;i++){int u,v;scanf("%d %d",&u,&v);u–;v–;a[u][v]=a[v][u]=1;}for(int u=0;u<n;u++){for(int v=u+1;v<n;v++){if(!a[u][v]){G[u].push_back(v);G[v].push_back(u);}}}find_bcc(n);memset(odd,0,sizeof(odd));//printf("%d\n",bcc_cnt);for(int i=1;i<=bcc_cnt;i++){memset(color,0,sizeof(color));for(int j=0;j<bcc[i].size();j++){bccno[bcc[i][j]]=i;}int u=bcc[i][0];color[u]=1;if(!bipartite(u,i))for(int j=0;j<bcc[i].size();j++){//printf("hehe\n");odd[bcc[i][j]]=1;}}int ans=n;for(int i=0;i<n;i++){if(odd[i])ans–;}printf("%d\n",ans);}return 0;}

片的时光如浮云般流过,我们的青春单薄的穿梭在蓝天之上。

UVALive 3523Knights of the Round Table(二分图+双连通分量)

相关文章:

你感兴趣的文章:

标签云: