如何编制时间表

时间:2009-02-20 19:31:09

标签: python scheduling

我必须构建一个基于某些规则进行计划的程序。我不知道如何解释它,所以让我举个例子..

你有五个人A,B,C,D,E。而你有另一套人S1 S2 S3 S4 S5 S6 S7。

如果ABCD和E每小时从9到5可用,并且S1 S2 S3 S4 S5 S6和S7有一个他们希望从{A,B,C,D,E}看到的3个人的列表

这是我的问题,我不知道从哪里开始...

感谢您的帮助!

3 个答案:

答案 0 :(得分:3)

这是一些可以解决问题的python代码。您将需要更新VISITOR_PEOPLE。如果有人在其他人之前安排,你需要重新安排VISITOR_IDS。

编辑:我添加了一些代码,以说明人们不能同时在不同的地方。您可能希望提高效率(即不要尝试安排不起作用的时间)。我会让你弄明白的;)

import sys

HOURS = ['9:00AM', '10:00AM', '11:00AM', '12:00PM', '1:00PM', '2:00PM', '3:00PM', '4:00PM']
PEOPLE_IDS = ['A', 'B', 'C', 'D', 'E']
VISITOR_IDS = ['S1', 'S2', 'S3', 'S4', 'S5', 'S6', 'S7']
VISITOR_PEOPLE = {'S1': ['A', 'B', 'C'], 
                  'S2': ['A', 'D', 'E'], 
                  'S3': ['B', 'E', 'D'], 
                  'S4': ['D', 'E', 'A'], 
                  'S5': ['C', 'D', 'E'], 
                  'S6': ['A', 'D', 'C'], 
                  'S7': ['B', 'C', 'D']
                  }

def main():
    people = {}
    for id in PEOPLE_IDS:
        people[id] = Person(id)
    visitors = {}
    for id in VISITOR_IDS:
        visitors[id] = Visitor(id, VISITOR_PEOPLE[id], people)
    for v in visitors.values():
        v.printSchedule()

class Person:
    def __init__(self, id):
        self.id = id
        self.schedule = [False]*8  # False = free, True = busy
    def scheduleTime(self):
        # schedules next available hour and returns that hour
        for i in range(len(self.schedule)):
            if not self.schedule[i]:
                self.schedule[i] = True
                return HOURS[i]
        return 'unavailable'
    def unscheduleTime(self, index):
        self.schedule[index] = False

class Visitor:
    def __init__(self, id, people_requests, people):
        self.id = id
        self.schedule = {} # {person_id: hour}
        for p in people_requests:
            bad_times = set()  # times that Visitor is busy
            time = people[p].scheduleTime()
            while time in self.schedule.values():  # keep scheduling a time until you get one that works for both the Visitor and Person
                bad_times.add(time)
                time = people[p].scheduleTime()
            self.schedule[p] = time
            for t in bad_times:  # unschedule bad_times from Person
                people[p].unscheduleTime(HOURS.index(t))
    def printSchedule(self):
        print 'Schedule for %s [Person (time)]:' % self.id
        for p,t in self.schedule.items():
            print '    %s (%s)' % (p,t)

if __name__ == '__main__':
    sys.exit(main())

答案 1 :(得分:2)

这是一种方法:

从S1开始,在上午9点将他想要的三个人分配给他,然后转到S2并尝试在上午9点安排他的会议。继续,直到发生冲突,然后将会议移至上午10点。返回上午9点进行下一次。如果10处也存在冲突,请转到11,等等。

一旦程序尝试在下班后安排会议,您就会知道您遇到的情况是一天内无法召开所有会议。

答案 2 :(得分:1)

关于scheduling algorithms还有很多话要说,所以为了你自己,你可能想要打开你的文本(或者至少做一些维基研究),并了解最常见的技巧。

就个人而言,我首先要考虑创建此计划所需的功能。

例如,您需要一个def testAppointment(meetingSubject, meetingTime):行的函数来测试给定的约会是否有效。

您可能还需要一个函数def listAvailableTimes(meetingSubject)):,该函数每次特定会议主题可用时都会返回list

你知道我要去哪儿吗?建立能够为您提供解决问题所需信息的功能,然后进行“主循环”,可以这么说。