Reputation: 48
Assume I have a working place with many rooms. Every room needs employees of specific specialities. Every employee has his specialities.
I need to assign employees to work in the rooms for a week and I want it to be done in the most efficient way. Employees way have other restrictions such as vacations etc.
I was wondering if I would define a problem as assigning the employees to the rooms in the best most efficient way possible could be solved with a genetic algorithm?
If not what is the right approach for this kind of problem?
Upvotes: -1
Views: 66
Reputation: 20668
Since you are looking for "the best most efficient way possible", the answer is no. Genetic algorithms may be used when the solution can be approximately correct.
It is hard to advise you on the right approach since your problem is not well described.
Upvotes: 0