zoukankan      html  css  js  c++  java
  • HDU 1350 Taxi Cab Scheme

    Taxi Cab Scheme

    Time Limit: 10000ms
    Memory Limit: 32768KB
    This problem will be judged on HDU. Original ID: 1350
    64-bit integer IO format: %I64d      Java class name: Main
     
    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

     
    解题:最小路径覆盖。。。按开始时间排序,如果能够此客出发时间前能够从上一个地点到此客所在地,那么连边
     
     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 const int maxn = 1000;
     4 struct GUEST {
     5     int s,t,x[2],y[2];
     6     bool operator<(const GUEST &t) const {
     7         return s < t.s;
     8     }
     9 } guest[maxn];
    10 vector<int>g[maxn];
    11 int Link[maxn];
    12 bool used[maxn];
    13 bool match(int u){
    14     for(int i = g[u].size()-1; i >= 0; --i){
    15         if(!used[g[u][i]]){
    16             used[g[u][i]] = true;
    17             if(Link[g[u][i]] == -1 || match(Link[g[u][i]])){
    18                 Link[g[u][i]] = u;
    19                 return true;
    20             }
    21         }
    22     }
    23     return false;
    24 }
    25 int main() {
    26     int kase,n,h,m;
    27     scanf("%d",&kase);
    28     while(kase--) {
    29         scanf("%d",&n);
    30         for(int i = 0; i < n; ++i) {
    31             scanf("%d:%d %d %d %d %d",&h,&m,&guest[i].x[0],&guest[i].y[0],&guest[i].x[1],&guest[i].y[1]);
    32             guest[i].s = h*60 + m;
    33             guest[i].t = guest[i].s + abs(guest[i].x[0] - guest[i].x[1]) + abs(guest[i].y[0] - guest[i].y[1]);
    34         }
    35         sort(guest,guest+n);
    36         for(int i = 0; i < maxn; ++i) g[i].clear();
    37         for(int i = 0; i < n; ++i)
    38             for(int j = i + 1; j < n; ++j) {
    39                 int d = abs(guest[i].x[1] - guest[j].x[0]) + abs(guest[i].y[1] - guest[j].y[0]);
    40                 if(guest[i].t + d < guest[j].s) g[i].push_back(j);
    41             }
    42         memset(Link,-1,sizeof Link);
    43         int ret = 0;
    44         for(int i = 0; i < n; ++i){
    45             memset(used,false,sizeof used);
    46             if(match(i)) ++ret;
    47         }
    48         printf("%d
    ",n-ret);
    49     }
    50     return 0;
    51 }
    View Code
  • 相关阅读:
    HTTP Basic 验证客户端 C#实现笔记
    泗洪高薪行业
    C#中Math的使用总结
    Android音频底层调试-基于tinyalsa
    我看项目管理第一回:认识利益相关方,提高思想意识
    【剑指Offer学习】【面试题19 :二叉树的镜像】
    算法
    zTree实现地市县三级级联DAO接口实现
    Unix/Linux环境C编程新手教程(12) openSUSECCPP以及Linux内核驱动开发环境搭建
    正尝试在 OS 载入程序锁内执行托管代码。不要尝试在 DllMain 或映像初始化函数内执行托管代码,这样做会导致应用程序挂起。
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/4696249.html
Copyright © 2011-2022 走看看