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

I'm creating groups of objects and I'm not really interested in creating a relational database. Basically i am creating a program to group movies for a party and each movie is rated on a 1-5 rating, now no two movies can be at the same party but every party must have at least one 5 star rating movie.

I have knocked out the first part that no two movies can be at the same party by creating unique group IDs using nanotime, however i cannot figure out how to create the second part by grouping the groups with the ratings. I would appreciate some high level problem solving, but please no code, I would prefer to program it myself, thanks for your help. :D

(if it helps i am using java)

share|improve this question
2  
Your question needs more context. Do you want to write a validation routine that takes a proposed set and tells you whether it fulfils the criteria? Or something else? Please be more specific! – Oli Charlesworth May 22 '11 at 23:08
Sorry i see the error in my writing, yes so i would like to create a system to group the movies for parties, because i am going to be renting them out to people. Each movie has the 5 star rating as previously stated but i would like everyone to get at least one 5 star rated movie for their party. I have created a gui so i can generate the party groups multiple times, its really just a sorting method. As for specific code, the long value that stores previous groupings is an arraylist, the ratings are ints and the objects are simply being grouped in regular lists. Thank you for your interest. :D – user765216 May 22 '11 at 23:21
@user: So you're looking for a way to randomly generate groups that fulfil the criteria? – Oli Charlesworth May 22 '11 at 23:22
Yes, and each time the groups must be unique, eventually of course you will need to reset the history for the groups. Thanks for the reply :) – user765216 May 22 '11 at 23:34
what exactly do you mean with this unique criteria? one "customer" should not get a film that he/she already got? – DarkSquirrel42 May 22 '11 at 23:52
show 3 more comments

1 Answer

up vote 0 down vote accepted

The simple solution would be to group all the movies into a list, sorted by rating descending (thus ensuring that all 5-star movies are at the start). You then iterate over that list, allocating a movie to each party (provided you have more 5-star movies than parties, this will satisfy the condition that all parties need one 5-star movie). You can loop this until all movies have been allocated or until each party has enough movies, whichever comes first.

share|improve this answer

Your Answer

 
discard

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