1 / 15

Dinner and a Golf Outing: Solving the real “Social Golfer Problem”

Dinner and a Golf Outing: Solving the real “Social Golfer Problem”. Scott R. Schultz - Mercer University, Macon, GA. Outline. Motivation Problem Statement A Simple Example NP-Hard? Combinatorics Solution Approach Results. Motivation. Confronted with two related scheduling problems:

emi-perez
Download Presentation

Dinner and a Golf Outing: Solving the real “Social Golfer Problem”

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Dinner and a Golf Outing: Solving the real “Social Golfer Problem” Scott R. Schultz - Mercer University, Macon, GA.

  2. Outline • Motivation • Problem Statement • A Simple Example • NP-Hard? • Combinatorics • Solution Approach • Results

  3. Motivation • Confronted with two related scheduling problems: • Posed with problem of scheduling a golf outing with the objective of creating 4-somes which pair every golfer with every other golfer in the minimum number of rounds. • Joined a dinner club of 15 couples where 3 couples are paired up and trade off hosting dinners. The pairings are then redone so that couples are paired with all other couples in the minimum number of re-pairings.

  4. Problem Statement Let m members of a set be divided into g groups of size s (m = g x s), determine a schedule for the minimum number of rounds such that each member is grouped with every other member at least once. Given w rounds, develop a schedule that minimizes the number of missed pairings when m members of a set are divided into g groups of size s (m = g x s).

  5. Related Problem Social Golfer Problem Schedule g*s golfers into g groups of s players over w weeks, such that no golfer plays in the same group with any other golfer more than just once. The problem can be looked at as an optimization problem if for two given numbers g and s we ask for the maximum number of weeks the golfers can play together. Sellman, M., http://www.cs.brown.edu/~sello/golf.html

  6. A Simple Example Optimal Solution: Round 1: ABC DEF GHI Round 2: ADGBEH CFI Round 3: AEI BFGCDH Round 4: AFHBDICEG Problem Size: m = 9 number of members g = 3 number of groups s = 3 size of group Solution Representation: Pairing Count Solution Evaluation: Number of missed pairs = 0.

  7. NP-Hard? • Don’t know • No known algorithm for general case? • Related to the Kirkman Triple problem posed in 1847 and Social Golfer Problem posed in 1998 - many open problems

  8. Combinatorics • number of sequences for a 3 group problem: • number of sequences in a problem with 4 groups: • number of possible combinations (C) in w rounds is:

  9. Combinatorics

  10. Solution Approach Classic Johnson et al. Simulated Annealing Approach: 1. Get an initial solution S. 2. Get an initial temperature T > 0. 3. While not yet frozen do the following: 3.1 Perform the following loop l time. 3.1.1 Pick a random neighbor S’ of S. 3.1.2 Let D = cost(S’) – cost(S) 3.1.3 If D <= 0 (downhill move), Set S = S’. 3.1.4 If D > 0 (uphill move), Set S = S’ with probability e-D/T. 3.2 Set T = rT (reduce temperature). 4. Return S

  11. Solution Approach Solution Representation: Round 1: ABC DEF GHI Round 2: ABC DEF GHI Round 3: ABC DEF GHI Round 4: ABC DEF GHI Solution Evaluation: Number of missed pairs = 27.

  12. Solution Approach Neighborhood Generation Scheme: Randomly select a round and switch two randomly selected members not in the same group. Example: Select round 3 Round 1: ABC DEF GHI and members C and H. Round 2: ABC DEF GHI Round 3: ABH DEF GCI Round 4: ABC DEF GHI Solution Evaluation: Number of missed pairs = 23.

  13. Results Desired solution – Missed Pairs = 0 * Perfect Pairing - each member paired with every other member once and only once + Pairing - each member paired with every other member once and no more than twice

  14. Results Best solutions found: http://faculty.mercer.edu/schultz_sr/social_golfer/social_golfer.html

  15. About the Author • Dr. Scott Schultz – assistant professor Mercer University, and consultant at Mercer Engineering Research Center. • Industry Experience: • 13 years automotive experience – Ford Motor Company. • 2 years furniture experience – Furniture Manufacturing Management center. • Consulting – manufacturing and military • Teaching Experience: • Simulation • Production, scheduling, inventory control • Operations Research • others…

More Related