I'm struggling to create an efficient algorithm that can determine whether a group of students can be divided into two groups.
Note that there are some provided constraints of the type that for (X,Y)
student X
must be with student Y
and some constraints of the type that for (A,B)
student A
cannot be with student B
. Not every student has a constraint on him, and some students have multiple constraints.
I've considered a graph where each student is a node and then two nodes are connected by an edge if the students could be in the same group (e.g. they either have the constraint that they must be together and/or don't have the constraint that they can't be together). But I'm not sure what algorithm I could apply to solve (or proven, given the set of constraints this is impossible), once I have constructed this graph representation.
Any advice is appreciated? Thank you!
You could use below steps and then use Bipartite Graph algorithm.
Consider a graph where each student is a node and then two nodes are connected by an edge if the students could not be in the same group.
if student A and B must be in same group then connect B to every node that A is connected and connect A to every node that B is connected too.
now you have a graph that you want to check if vertices can be divided into two disjoint sets and there is no edge between two nodes in the same set. this is Bipartite Graph and you can find the algorithms about how to solve this.
Edit with PeterdeRivaz comment
this answer is better as peter said you could change my step to this :
Consider a graph where each student is a node and then two nodes are connected by an edge if the students could not be in the same group.
if student A and B must be in same group then connect A and B to an imaginary student.