Taxi Cab Scheme
Time Limit: 1000MS   Memory Limit: 30000K
Total Submissions: 5710   Accepted: 2393

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

二分匹配:

弄清楚题意比较重要:

出租车公司有n个预约, 每个预约有时间和地点, 地点分布在二维整数坐标系上, 地点之间的行驶时间为两点间的曼哈顿距离(|x1 - x2| + |y1 - y2|)。一辆车可以在运完一个乘客后运另一个乘客, 条件是此车要在预约开始前一分钟之前到达出发地, 问最少需要几辆车搞定所有预约。(摘自http://blog.sina.com.cn/s/blog_6635898a0100m54w.html)

我就是没弄清题意WA了好几次。弄清提议后开始构图,求最小边覆盖,还有就是这是有向图有所以构单边。

 //692K    79MS    C++    1333B    2014-06-05 11:26:44
#include<iostream>
#include<vector>
#define N 505
using namespace std;
struct node{
int a,b,c,d;
int time;
}p[N];
vector<int>V[N];
int match[N];
int vis[N];
int n;
int dfs(int u)
{
for(int i=;i<V[u].size();i++){
int v=V[u][i];
if(!vis[v]){
vis[v]=;
if(match[v]==- || dfs(match[v])){
match[v]=u;
return ;
}
}
}
return ;
}
int hungary()
{
int ret=;
memset(match,-,sizeof(match));
for(int i=;i<n;i++){
memset(vis,,sizeof(vis));
ret+=dfs(i);
}
return ret;
}
int main(void)
{
int t;
int time[N];
int dis[N];
int h,m;
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
for(int i=;i<=n;i++) V[i].clear();
for(int i=;i<n;i++){
scanf("%d:%d %d%d%d%d",&h,&m,&p[i].a,&p[i].b,&p[i].c,&p[i].d);
p[i].time=abs(p[i].a-p[i].c)+abs(p[i].b-p[i].d);
time[i]=h*+m;
for(int j=;j<i;j++)
if(time[i]-time[j]>p[j].time+abs(p[i].a-p[j].c)+abs(p[i].b-p[j].d)){
//V[i].push_back(j);
V[j].push_back(i);
}
}
printf("%d\n",n-hungary());
}
return ;
}

最新文章

  1. maven之上传新的jar包
  2. ubifs核心对象 -- TNC和LPT
  3. view抖动效果
  4. Android控件_TextView(显示文本框控件)
  5. C#完成超酷的图像效果 (附demo)
  6. PowerDesigner 15 概述
  7. spring+ibatis环境搭建
  8. How Much Did It Rain? Winner&#39;s Interview: 1st place, Devin Anzelmo
  9. Unity NGUI 网络斗地主 -发牌 脚本交互
  10. Set Linux starts in multi-user mode as default.
  11. wireshark 抓包过滤器使用
  12. AI 帮助涂鸦
  13. Delphi非官方的补丁
  14. python - json/pickle
  15. 通过键盘控制改变物体transform值
  16. linux虚拟机与winodows共享文件夹----linux安装VMware tools
  17. ehcache.xml的配置详解和示例
  18. java阻塞队列之ArrayBlockingQueue
  19. c# 画一个报告
  20. JAVA中的static方法

热门文章

  1. Cacti-安装和使用详解
  2. jmf找不到摄像头设备解决办法
  3. Drools给日志打标签
  4. 为什么在注册和注销的时候intent要改成隐式调用
  5. 关于n!mod p
  6. windows与OSX双操的时区-黑苹果之路
  7. 十大关系数据库SQL注入工具一览
  8. 如何利用tomcat和cas实现单点登录(1):配置tomcat的ssl和部署cas
  9. JS-改变页面的颜色(一)
  10. Spring mvc 配置详解