Problem
: Break The Friendship
In a class room everyone is very friendly and has bonded with others in
a short span of time. During the exams, students will sit along with their
friends and will write the exams, which actually resulted in the finding that
only a few members in the batch are good at studies and others are not. After
getting several complaints from the staff members, the Principal has agreed to
change the sitting pattern during the exams for which she has formed a
committee. Using a spy, committee was able to get a list of close friends for
all the students in the class. Now using this list they want to identify two
groups of people such that a person in one group must not be a friend to any
other in the same group. Your task is to help the committee.
Input Format:
Input consists of two parts, viz.
Input consists of two parts, viz.
1. First Line contains, number of
students in the class room (N) and number of friendship
connections (M)
2. Next M line
contains a list that represents two integers i and j,
which represents that i and j are friends
Output Format:
Print "Yes" if the committee can divide the students in two groups of people, else print "No".
Print "Yes" if the committee can divide the students in two groups of people, else print "No".
Constraints:
1 <= N <= 50
1 <= M <= N * (N-1)/2
1 <= I, j <= N
Sample Input and Output
SNo.
|
Input
|
Output
|
1
|
4 3 1 2 1 3 2 4 |
Yes |
Solution in c:
#include<stdio.h>
int main()
{
int i,j,n,temp,m,a[50];
int f=0;
scanf("%d %d",&n,&m);
if((n<=50)&&(m<=n*(n-1)/2))
{
for(i=1;i<=(m*2);i++)
{
scanf("%d",&a[i]);
}
for(i=1;i<=m;i++)
{
for(j=i+1;j<=m;j++)
{
if((i<=n)&&(j<=n))
{
temp=a[i];
if(temp==a[j])
{
f=1;
}
}
}
}
if(f==1)
{
printf("Yes");
}
else
{
printf("No");
}
}
return 0;
}