本文主要是介绍hdu5971 Wrestling Match,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Nowadays, at least one wrestling match is held every year in our country. There are a lot of people in the game is "good player”, the rest is "bad player”. Now, Xiao Ming is referee of the wrestling match and he has a list of the matches in his hand. At the same time, he knows some people are good players,some are bad players. He believes that every game is a battle between the good and the bad player. Now he wants to know whether all the people can be divided into "good player" and "bad player".
5 4 0 0 1 3 1 4 3 5 4 5 5 4 1 0 1 3 1 4 3 5 4 5 2
NO
YES
题意:
ac代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <vector>
#include <queue>
using namespace std;
int vis[1005];
vector<int> ve[1005];
int dg[1005];
int bd[1005];
int dfs(int p,int q)
{vis[p]=q;int t;if(q==2)t=1;else t=2;for(int i=0;i<ve[p].size();i++){if(vis[ve[p][i]]==q)return 0;if(vis[ve[p][i]]==0&&dfs(ve[p][i],t)==0)return 0;}return 1;
}
int main()
{int n,m,x,y,a,b;while(cin>>x>>y>>n>>m){int flag=0;for(int i=0;i<x;i++)ve[i].clear();memset(vis,-1,sizeof(vis));for(int i=1;i<=y;i++){scanf("%d%d",&a,&b);vis[a]=0;vis[b]=0;ve[a].push_back(b);ve[b].push_back(a);}for(int i=0;i<n;i++){scanf("%d",&a);vis[a]=1;for(int j=0;j<ve[a].size();j++){if(vis[ve[a][j]]==1){flag=1;break;}elsevis[ve[a][j]]=2;}}for(int i=0;i<m;i++){scanf("%d",&a);vis[a]=2;for(int j=0;j<ve[a].size();j++){if(vis[ve[a][j]]==2){flag=1;break;}elsevis[ve[a][j]]=1;}}for(int i=1;i<=x;i++){if(vis[i]==1){if(dfs(i,1)==0){flag=1;break;}}if(vis[i]==2){if(dfs(i,2)==0){flag=1;break;}}if(vis[i]==0){if(dfs(i,1)==0&&dfs(i,2)==0){flag=1;break;}}}for(int i=1;i<=x;i++){if(vis[i]==-1){flag=1;break;}}if(flag==1)cout<<"NO"<<endl;elsecout<<"YES"<<endl;}return 0;
}
这篇关于hdu5971 Wrestling Match的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!