There is a funny car racing in a city with n junctions and m directed roads.
The funny part is: each road is open and closed periodically. Each road is associate with two
integers (a, b), that means the road will be open for a seconds, then closed for b seconds, then open for
a seconds… All these start from the beginning of the race. You must enter a road when it’s open, and
leave it before it’s closed again.
Your goal is to drive from junction s and arrive at junction t as early as possible. Note that you
can wait at a junction even if all its adjacent roads are closed.
Input
There will be at most 30 test cases. The first line of each case contains four integers n, m, s, t
(1 ≤ n ≤ 300, 1 ≤ m ≤ 50, 000, 1 ≤ s, t ≤ n). Each of the next m lines contains five integers u, v, a,
b, t (1 ≤ u, v ≤ n, 1 ≤ a, b, t ≤ 105
), that means there is a road starting from junction u ending with
junction v. It’s open for a seconds, then closed for b seconds (and so on). The time needed to pass this
road, by your car, is t. No road connects the same junction, but a pair of junctions could be connected
by more than one road.
Output
For each test case, print the shortest time, in seconds. It’s always possible to arrive at t from s.
Sample Input
3 2 1 3
1 2 5 6 3
2 3 7 7 6
3 2 1 3
1 2 5 6 3
2 3 9 5 6
Sample Output
Case 1: 20
Case 2: 9
这道题就是一个spfa,就是处理关卡的时候要处理好。
还是很简单的。
#include
#include
using namespace std;
#include
#include
#include
/*
Name:
Copyright:
Author:
Date: 07/05/16 20:12
Description:
*/
const int maxn=305;
const int inf=0x3f3f3f3f;
int used[maxn];
struct note1{
int op,cl,ti;
note1(){
}
note1(int x,int y,int z){
op=x;
cl=y;
ti=z;
}
};
vector vec[maxn][maxn];
int n,m,s,t;
struct note{
int t,pos;
note(){
}
note(int x,int y){
pos=x;
t=y;
}
};
void bfs(){
queue que;
while(!que.empty()){
que.pop();
}
memset(used,inf,sizeof(used));
used[s]=0;
que.push(note(s,0));
while(!que.empty()){
struct note q=que.front();
que.pop();
// cout<<"arrive="<
if(q.pos==t)continue;
int num=q.pos;
int time=q.t;
for(int i=1;i<=n;++i){
int len=vec[num][i].size();
if(len){
int mintime=inf;
for(int j=0;jint tis=time;
struct note1 r=vec[num][i][j];
int up=r.op+r.cl;
// cout<<"time="<(int j=0;jfor(int i=0;iint u,v,as,bs,ts;
scanf("%d%d%d%d%d",&u,&v,&as,&bs,&ts);
if(as>=ts)vec[u][v].push_back(note1(as,bs,ts));
}
bfs();
}
return 0;
}