Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My problem: I want to make a "kind" lottery-process. This algorithm will distribute prizes evenly if possible. This could be considered unfair to the people who buy a ticket to every prize since he will be more flexible to win the unpopular prizes, but never mind that, we may say that the prizes are roughly the same. The algorithm will help killing variance and reduce the dicerolling to win prizes. (Yep, boring)

I will have N competitions were you can win a prize. The persons, M, can buy a ticket for every N.

So an example, here are prizes and people who have bought tickets:

Prize1=[Pete,Kim, Jim]
Prize2=[Jim, Kim]
Prize3=[Roger, Kim]
Prize4=[Jim]

There are 4 prizes and 4 unique names, so it should be possible to distribute it evenly.

The example may be easy to solve, you should find it out in 15 seconds, but when M and N increase it gets much worse.

I'm trying to make a general algorithm, but it's hard. I need some good tips or even better the solution or link to a solution.

share|improve this question
The word you are looking for is 'prize', not 'price', just so you know. Confused me a bit. – Phoenix Apr 2 '11 at 2:14
So how are you supposed to distribute the prizes? – quasiverse Apr 2 '11 at 5:30
By assigning the prizes they can win so everyone is assured to win x prizes each- the rest has to be distributed by random lottery. – Martin F Apr 2 '11 at 14:25

2 Answers

Theory: You have a Bipartite graph. You have to find a Perfect matching. There is a perfect matching in a graph if:

If a perfect matching exists, you can run the Hungarian algorithm to find it.

share|improve this answer
Thanks for the help. I ended up just brute forcing my way to a sollution. The web server is fast and the m and n are not that large :) The solution is so bad its rediculous, im bombarding it with random numbers until it fit my criteria, guess i program it better when I have time :-) – Martin F Apr 13 '11 at 4:56
FYI: you can't solve this problem with bruteforce if n > ~30. – erenon Apr 13 '11 at 14:50

You want to look for a job-assignment algorithm, or a hungarian algorithm for example a weighted perfect match in a bipartite graph, or maybe the all-pair floyd warshall algorithm. My idea is that this can be represent as a bipartite graph. This is not an easy to solve task.

share|improve this answer
Thanks, I agree with you, i came up with a brute force sollution which sucked, haha. Efficient CPUs are making us stupid :D – Martin F Apr 13 '11 at 4:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.