Problem Description

This year is the 60th anniversary of NJUST, and to make the celebration more colorful, Tom200 is going to invite distinguished alumnus back to visit and take photos.
After carefully planning, Tom200 announced his activity plan, one that contains two characters:
1. Whether the effect of the event are good or bad has nothing to do with the number of people join in.
2. The more people joining in one activity know each other, the more interesting the activity will be. Therefore, the best state is that, everyone knows each other.
The event appeals to a great number of alumnus, and Tom200 finds that they may not know each other or may just unilaterally recognize others. To improve the activities effects, Tom200 has to divide all those who signed up into groups to take part in the activity at different time. As we know, one's energy is limited, and Tom200 can hold activity twice. Tom200 already knows the relationship of each two person, but he cannot divide them because the number is too large.
Now Tom200 turns to you for help. Given the information, can you tell if it is possible to complete the dividing mission to make the two activity in best state.
Input
The input contains several test cases, terminated by EOF.
Each case starts with a positive integer n (2<=n<=100), which means the number of people joining in the event.
N lines follow. The i-th line contains some integers which are the id
of students that the i-th student knows, terminated by 0. And the id starts from 1.
Each case starts with a positive integer n (2<=n<=100), which means the number of people joining in the event.
N lines follow. The i-th line contains some integers which are the id
of students that the i-th student knows, terminated by 0. And the id starts from 1.
Output
If divided successfully, please output "YES" in a line, else output "NO".
Sample Input
3 3 0 1 0 1 2 0
Sample Output
YES
题解:两个人必须相互认识才能一起来,A认识B,B不认识A则不行。注意这点就行了。
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
bool map[103][103];
bool f[103][103];
int color[103];
bool find(int x,int n)
{
for(int i = 1;i <= n;i++)
{
if(!map[x][i] && i != x)
{
if(color[i] == 0)
{
color[i] = 3 - color[x];
if(!find(i,n))
{
return false;
}
}
else if(color[i] == color[x])
{
return false;
}
}
}
return true;
}
int main()
{
int n;
while(scanf("%d",&n) != EOF)
{
memset(map,false,sizeof(map));
memset(color,0,sizeof(color));
memset(f,false,sizeof(f));
int x;
for(int i = 1;i <= n;i++)
{
while(true)
{
scanf("%d",&x);
if(x == 0)
{
break;
}
f[i][x] = true;
if(f[x][i])
{
map[x][i] = map[i][x] = true;
}
}
}
bool flag = true;
for(int i = 1;i <= n;i++)
{
if(color[i] == 0)
{
color[i] = 1;
if(!find(i,n))
{
flag = false;
break;
}
}
}
if(flag)
{
printf("YES\n");
}
else
{
printf("NO\n");
}
}
return 0;
}
本文探讨了如何在NJUST60周年校庆活动中,将校友分组以提高活动效果的问题。通过分析每个人的社交关系,提出了将所有人分组到最佳状态的方法,并通过代码实现了解决方案。
9261

被折叠的 条评论
为什么被折叠?



