码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1350 最小路径覆盖

时间:2014-08-02 01:43:22      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   java   os   strong   io   

Taxi Cab Scheme

Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 707    Accepted Submission(s): 336


Problem 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
 
 
 
题目意思:
有n个乘客,下面n行每行为h:m a b c d  即该乘客出发时间(出发时间从0:00---23:59),从(a,b)这个地方到达(c,d)这个地方,路上经过时间为|a-c|+|b-d|,当把A乘客送到目的地后,若从A乘客的目的地到达B乘客的初始地后时间在B出发时间之前,那么这个车还可以把B乘客送到目的地。求最少用多少车才能把所有乘客全送到目的地。
 
 
思路:
假设把A乘客送到目的地后还能把B乘客送到目的地,从A画一条有向边指向B,则题目给出一副点和有向边的图,若每个乘客都用不同的车送,那么总共需要n两车,每有一条有向边,则n-1,那么很显然咱们需要求最大匹配。
 
 
代码:
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <vector>
 4 #include <algorithm>
 5 #include <iostream>
 6 using namespace std;
 7 #define N 550
 8 
 9 vector<int>ve[N];
10 int from[N];
11 int visited[N];
12 struct node{
13     int h, m;
14     int t;
15     int st;
16     int a, b, c, d;
17 }a[N];
18 
19 int march(int u){
20     int i, v;
21     for(i=0;i<ve[u].size();i++){
22         v=ve[u][i];
23         if(!visited[v]){
24             visited[v]=1;
25             if(from[v]==-1||march(from[v])){
26                 from[v]=u;
27                 return 1;
28             }
29         }
30     }
31     return 0;
32 }
33 main()
34 {
35     int i, j, k, num;
36     int n, t;
37     cin>>t;
38     while(t--){
39         scanf("%d",&n);
40         memset(from,-1,sizeof(from));
41         for(i=1;i<=n;i++){
42             ve[i].clear();
43             scanf("%d:%d %d %d %d %d",&a[i].h,&a[i].m,&a[i].a,&a[i].b,&a[i].c,&a[i].d);
44             a[i].t=a[i].h*60+a[i].m+abs(a[i].a-a[i].c)+abs(a[i].b-a[i].d);
45             a[i].st=a[i].h*60+a[i].m;
46         }
47         for(i=1;i<=n;i++){
48             for(j=1;j<=n;j++){
49                 if(i!=j&&a[i].t+abs(a[i].c-a[j].a)+abs(a[i].d-a[j].b)<a[j].st){
50                     ve[i].push_back(j);
51                 }
52             }
53         }
54         num=0;
55         for(i=1;i<=n;i++){
56             memset(visited,0,sizeof(visited));
57             if(march(i))
58             num++;
59         }
60         printf("%d\n",n-num);
61     }
62 }

 

HDU 1350 最小路径覆盖,布布扣,bubuko.com

HDU 1350 最小路径覆盖

标签:des   style   blog   color   java   os   strong   io   

原文地址:http://www.cnblogs.com/qq1012662902/p/3886037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!