Question

URGENT. I need a working code (not a pseudo-code!) The manager of a large student union...

URGENT. I need a working code (not a pseudo-code!)

The manager of a large student union on campus comes to you with the following problem. She’s in charge of a group of n students, each of whom is scheduled to work one shift during the week. There are different jobs associated with these shifts (tending the main desk, helping with package delivery, rebooting cranky information kiosks, etc.), but we can view each shift as a single contiguous interval of time. There can be multiple shifts going on at once. She’s trying to choose a subset of these n students to form a supervising committee that she can meet with once a week. She considers such a committee to be complete if, for every student not on the committee, that student’s shift overlaps (at least partially) the shift of some student who is on the committee. In this way, each student’s performance can be observed by at least one person who’s serving on the committee.
Give an efficient algorithm (greedy algorithm based approach) that takes the schedule of n shifts and produces a complete supervising committee containing as few students as possible.
Example. Suppose n = 3, and the shifts are
Monday 4 P.M.–Monday 8 P.M.,
Monday 6 P.M.–Monday 10 P.M.,
Monday 9 P.M.–Monday 11 P.M..
Then the smallest complete supervising committee would consist of just the second student, since the second shift overlaps both the first and the third.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

greedy search;

while annealing is not finished do

pick random shift;

pick swap heuristic randomly;

if swap heuristic then

find suitable shift to swap with the random shift;

if possible swap found and annealing OK then

swap shifts;

end

end

else if switch heuristic then

find suitable employee for the random shift;

if suitable employee was found and annealing OK then

assign the random shift to the new employee;

end

end

if switched or swapped then

greedy assignment;

end

end

Add a comment
Know the answer?
Add Answer to:
URGENT. I need a working code (not a pseudo-code!) The manager of a large student union...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT