I have a problem of creating an exam schedule based on three factors: rooms, courses, and days. There are a set number of rooms r, courses c, and days d where each day has three slots.
There is also a set of students and a mapping from students to courses so that there cannot be any conflicts.
I'm trying to find an algorithm for this and found that this fit the max-flow problem. I'm having troubles making a flow network graph for this.
Thanks