Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

Mad Bat

@Mad Bat
About
Posts
1
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Round-robin tournament scheduling, with teams that may share their home field
    M Mad Bat

    Hello! I need to implement an algorithm to create round-robin tournament schedules, but with the constraint that up to 2 teams – that may play in different leagues – might share the same field on the same time slot of the week, so they must be never be scheduled to play at their home field in the same round of their league schedule. Simple example:

    leagueA = [
    TeamA(plays at FieldA on Sunday),
    TeamB(plays at FieldB on Sunday),
    TeamC(plays at FieldA on Saturday),
    TeamD(plays at FieldD on Saturday)
    ]
    leagueB = [
    TeamE(plays at FieldA on Sunday),
    TeamF(plays at FieldF on Sunday),
    TeamG(plays at FieldG on Saturday),
    TeamH(plays at FieldF on Saturday)
    ]

    I was thinking of generating the schedule for leagueA with the circle algorithm alternating home and away at each round as described in the linked article, and then to approach the scheduling for leagueB by prefilling the slots for the teams that share the field with teams in the other league somehow, but I'm not sure whether it's the right approach and how to actually implement it in a way that is guaranteed to produce schedules do not produce conflicts. Any help would be highly appreciated!

    Algorithms tutorial sharepoint algorithms help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups