Skip to content

Sawom/Algorithm-Project

Repository files navigation

Conference Room Schedule System

Here I implement an application about Conference Room Schedule System . It is a classic application of this problem is in scheduling a room for multiple competing events, each having its own time requirements (start and end time).
Suppose we have a set of activities {a 1 ; a 2 ; … ;a n } that wish to use a resource, such as a Conference Room , which can serve only one activity at a time.
Each activity a i has a start time s(i) and a finish time f(i) , where 0 s(i) < f(i) < α. We have to select the maximum size subset of activities that are mutually compatible. Two activities are compatible if their intervals do not overlap.
Here we use Greedy Algorithm

Screenshot (852)

Explanation

At first we input how many event we want to arrange. Here negetive number is an invalid input. After that we input start times and ending times from 0 to 23 because a day has 24 hours and our Conference Room is 24 hours open. After valid input this application suggest you the maximum size subset of activities that are mutually compatible.

Thank You!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages