[2점 매칭] poj2060 Taxi Cab Scheme
http://poj.org/problem?id=2060
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
제목: 승객의 시작 시간, 출발점과 목적지의 좌표를 제시하고 최소 몇 대의 택시가 모든 승객의 외출을 만족시킬 수 있도록 요구한다.
#include<cstdio>
#include<cstring>
using namespace std;
#define MAX 505
#define abs(x) ((x)>0?(x):(-(x)))
//
int time[MAX],pos[MAX][4];
bool path[MAX][MAX],visit[MAX];
int match[MAX];
bool SearchPath(int s,int m)
{
for(int i=0; i<m; ++i)
{
if(path[s][i]&&!visit[i])
{
visit[i]=true;
if(match[i]==-1||SearchPath(match[i],m))
{
match[i]=s;
return true;
}
}
}
return false;
}
int distants(int a,int b,int c,int d)
{
return (abs(a-c)+abs(b-d));
}
int main()
{
int T,n,a,b;
scanf("%d",&T);
for(;T--;)
{
scanf("%d",&n);
memset(path,false,sizeof(path));
for(int i=0;i<n;++i)
{
scanf("%d:%d",&a,&b);
time[i]=a*60+b;
for(int j=0;j<4;++j)
scanf("%d",&pos[i][j]);
}
for(int i=0;i<n;++i)
{
for(int j=i+1;j<n;++j)
{
if(time[i]+distants(pos[i][0],pos[i][1],pos[i][2],pos[i][3])+distants(pos[i][2],pos[i][3],pos[j][0],pos[j][1])<time[j])
path[i][j]=true;
}
}
int summ=0;
memset(match,-1,sizeof(match));
for(int i=0; i<n; ++i)
{
memset(visit,false,sizeof(visit));
if(SearchPath(i,n))
summ++;
}
printf("%d
",n-summ);
}
return 0;
}
출처:http://blog.csdn.net/acm_ted/article/details/7780079
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
html 버전 SICP를 kindle에서 읽을 수 있도록 시도했습니다.최근, 여러가지 번역의 전자서적판이 나돌고 있습니다만 아무도 이마이치이므로, 와다 선생님의 번역을 간편하게 읽을 수 있도록(듯이) 하고 싶었습니다. 또, 전자 서적판이라고 말해 두면서 리플로우도 없고 문자 사이즈의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.