您的位置:首页 > 其它

lightoj1009 - Back to Underworld【dfs】

2016-04-13 21:23 309 查看
1009 - Back to Underworld



 
  

PDF (English)StatisticsForum
Time Limit: 4 second(s)Memory Limit: 32 MB
The Vampires and Lykans are fighting each other to death. The war has become so fierce that, none knows who will win. The humans want to know who will survive finally. But humans are afraid of going to the battlefield.

So, they made a plan. They collected the information from the newspapers of Vampires and Lykans. They found the information about all the dual fights. Dual fight means a fight between a Lykan and a Vampire. They know the name of the dual fighters, but don't
know which one of them is a Vampire or a Lykan.

So, the humans listed all the rivals. They want to find the maximum possible number of Vampires or Lykans.

Input

Input starts with an integer T (≤ 10), denoting the number of test cases.

Each case contains an integer n (1 ≤ n ≤ 105), denoting the number of dual fights. Each of the next n lines will contain two different integers u v (1 ≤ u, v ≤ 20000) denoting there was a fight
between uand v. No rival will be reported more than once.

Output

For each case, print the case number and the maximum possible members of any race.

Sample Input

Output for Sample Input

2

2

1 2

2 3

3

1 2

2 3

4 2

Case 1: 2

Case 2: 3

Note

Dataset is huge, use faster I/O methods.

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<list>
#include<queue>
#include<vector>
#include<iostream>
using namespace std;
const int maxn=20010;
vector<int>vec[maxn];
bool use[maxn];
int vis[maxn],num[maxn];
void init(){
for(int i=1;i<=20000;++i){
vis[i]=0;use[i]=false;
vec[i].clear();
}
}
int temp,sum;
void dfs(int n,int sign){//当sign为1时标记当前点为友方
if(sign==1)temp++;sum++;
for(int i=0;i<vec
.size();++i){
if(!use[vec
[i]]){
use[vec
[i]]=true;
dfs(vec
[i],-1*sign);//变号
}
}
}
int main()
{
int t,i,j,k,n,test=1;
scanf("%d",&t);
while(t--){
scanf("%d",&n);
int a,b,cnt=0;init();
for(i=0;i<n;++i){
scanf("%d%d",&a,&b);
vec[a].push_back(b);
vec[b].push_back(a);
if(vis[a]==0){
num[cnt]=a;cnt++;vis[a]=1;
}
if(vis[b]==0){
num[cnt]=b;cnt++;vis[b]=1;
}
}

int ans=0;
for(i=0;i<cnt;++i){
if(!use[num[i]]){
temp=sum=0;use[num[i]]=true;
dfs(num[i],1);
ans=ans+max(temp,sum-temp);
}
}
printf("Case %d: %d\n",test++,ans);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  lightoj1009 - Back t