Im building web application in which Im trying to assign users to groups based on their preferences. In my application I have 1 table where users infos are stored, and 1 table where users choices are stored.

Users must pick at least one choice from 10.

I`m trying to write algorithm that will satisfy these rules:
1. there must be from 4 to 8 users in a group
2. each user must be at most in one group
3. every user in the group, have at least one preferred choice in common
4. and preferably each user belongs to the group / as many as possible

but with no luck yet. Have anybody any idea how to find such a solution? Also algorithm which will find good solution (not best), will be much appreciated.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

This problem is similar to the Miss Manners 2009 example of Drools Planner, which is about assigning guests (= users) to tables (= groups) and make sure guests sitting next to each other have the same preferences.

link|improve this answer
feedback

I don't see why you need a algorithm to enforce this.

Users must pick at least one choice from 10.

This should be enforced at the UI. You probably want to give the user just a listbox of the valid options, if its a free text box, validate it immediately after the user submits the value.

I`m trying to write algorithm that will satisfy these rules: 1. there must be from 4 to 8 users in a group 2. each user must be at most in one group 3. every user in the group, have at least one preferred choice in common 4. and preferably each user belongs to the group / as many as possible

I would write each rule as a SQL statement and based on the requirement, trigger these SQL statements after each update on the database. If you are perform conscious, schedule to run all this rules in a stored procedure as a nightly batch job.

link|improve this answer
to ravi: lets assume we have 8 users: u1, ..., u8 with these preferences: u1, .., u4 prefer choices 1 and 2 u5, .., u7 - 1 and 3 u8 - choice number 3. There are 2 solutions that satisfies rules 1 - 3. 1 solution: just one group A = u1,..,u7, 2. solution two groups: A = u1, .., u4 and B = u5,..u8 According to rule 4 i prefer the 2. solution. I`m not sure if SQL can handle this kind of query, if yes, can you show my some example? Thanks. – zlosim Mar 7 '11 at 23:00
@zloism: Got it! Interesting question.. – sorcerer Mar 8 '11 at 1:00
feedback

Your Answer

 
or
required, but never shown

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