alpc60 ACM/ICPC程序设计
成长的路……源
posts - 20,comments - 42,trackbacks - 0
 

Taxi Cab Scheme

Time Limit: 1000MS

 

Memory Limit: 30000K

Total Submissions: 1342

 

Accepted: 587

Description

Running a taxi station is not all that simple. Apart from the obvious demand for a centralised coordination of the cabs in order to pick up the customers calling to get a cab as soon as possible,there is also a need to schedule all the taxi rides which have been booked in advance.Given a list of all booked taxi rides for the next day, you want to minimise the number of cabs needed to carry out all of the rides.
For the sake of simplicity, we model a city as a rectangular grid. An address in the city is denoted by two integers: the street and avenue number. The time needed to get from the address a, b to c, d by taxi is |a - c| + |b - d| minutes. A cab may carry out a booked ride if it is its first ride of the day, or if it can get to the source address of the new ride from its latest,at least one minute before the new ride's scheduled departure. Note that some rides may end after midnight.

Input

On the first line of the input is a single positive integer N, telling the number of test scenarios to follow. Each scenario begins with a line containing an integer M, 0 < M < 500, being the number of booked taxi rides. The following M lines contain the rides. Each ride is described by a departure time on the format hh:mm (ranging from 00:00 to 23:59), two integers a b that are the coordinates of the source address and two integers c d that are the coordinates of the destination address. All coordinates are at least 0 and strictly smaller than 200. The booked rides in each scenario are sorted in order of increasing departure time.

Output

For each scenario, output one line containing the minimum number of cabs required to carry out all the booked taxi rides.

Sample Input

2
2
08:00 10 11 9 16
08:07 9 16 10 11
2
08:00 10 11 9 16
08:06 9 16 10 11

Sample Output

1
2

Source

Northwestern Europe 2004

 

 

       根据这道题目的意思,我们可以建一张图,对于两个booked taxi riderirj如果一辆车能够先完成ri的任务再有时间赶去完成rj的任务,那么就建立一条ri指向rj的边。

       按照题目的要求,要选择最少的taxi来完成这些任务。显然在上面这个例子中,需要安排2taxi。结合这个图,可以把题目的要求转化为找出最少的路径条数,使得这些路径覆盖途中所有的边,例如可以选择2条路径1->3->41->2就可以覆盖所有的边。也可以选择1->3->42(因为2作为初始站,不需要由1转移过来)。对于一条连续的路径vi1->vi2->…vik由于这条路径上的任务实际上是由一辆taxi来完成的,可以吧这条路径退化成两个点vi1->vik。有了这两步建图的步骤以后,问题的求解就可以变为找出顶点集的一个最小子集,使这个顶点子集覆盖所有的边(每条边都至少和一个顶点集的顶点相连)。这个问题就是图的最小点覆盖。再看这张图,还有一些性质能够让我们更好地求出最小点覆盖。这个图是一个有向无环图,没有自环,就可以拆点,把原先建的图变成一张二分图。

可以再图中看出,上面举出的一条路径1->3->4对应了这个二分图中的路径1->3’->3->4’,在这个二分图中就需要求一个最大独立子集(这里的4点就是一条路径的终点,没一条路径即对应有一个终点!)。二分图的最大独立数是总点数与最大匹配数的差值。接下来建图,拆点,求二分图最大匹配就能解决这道题目了。


posted on 2008-09-15 19:46 飞飞 阅读(1780) 评论(0)  编辑 收藏 引用 所属分类: ACM/ICPC

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理