Problem D
Delivery Delays
Do you have a craving for a delicious pizza? Do you want one right now? Order at Hannah’s pizzeria and we will deliver the pizza to your door. If more than $20$ minutes elapse from the time you place your order until you receive your Hannah’s pizza, the pizza will be free of charge!
Even though Holly’s delivery car can hold an arbitrary number of pizzas, she has not been able to keep up with the large number of orders placed, meaning they have had to give away a number of pizzas due to late deliveries.
Trying to figure out the best way to fix the situation, Hannah has now asked you to help her do some analysis of yesterday’s orders. In particular, if Holly would have known the set of orders beforehand and used an optimal delivery strategy, what is the longest a customer would have had to wait from the time they placed their order until they received their pizza?
Hannah provides you with a map of the roads and road intersections of Stockholm. She also gives you the list of yesterday’s orders: order $i$ was placed at time $s_ i$ from road intersection $u_ i$, and the pizza for this order was out of the oven and ready to be picked up for delivery at time $t_ i$. Hannah is very strict about following the “first come, first served” principle: if order $i$ was placed before order $j$ (i.e. $s_ i < s_ j$), then the pizza for order $i$ will be out of the oven before the pizza for order $j$ (i.e. $t_ i < t_ j$), and the pizza for order $i$ must be delivered before the pizza for order $j$.
Input
The first line of input contains two integers $n$ and $m$ ($2 \le n \le 1\, 000$, $1 \le m \le 5\, 000$), where $n$ is the number of road intersections in Stockholm and $m$ is the number of roads. Then follow $m$ lines, the $i$’th of which contains three integers $u_ i$, $v_ i$ and $d_ i$ denoting that there is a bidirectional road between intersections $u_ i$ and $v_ i$ ($1 \le u_ i, v_ i \le n$, $u_ i \neq v_ i$), and it takes Holly’s delivery car $d_ i$ time units to cross this road in either direction ($0 \le d_ i \le 10^8$). There is at most one road between any pair of intersections.
Then follows a line containing an integer $k$, the number of orders ($1 \le k \le 1\, 000$). Then follow $k$ lines, the $i$’th of which contains three integers $s_ i$, $u_ i$, $t_ i$ denoting that an order was made at time $s_ i$ from road intersection $u_ i$ ($2 \leq u_ i \leq n$), and that the order is ready for delivery at time $t_ i$ ($0 \le s_ i \le t_ i \le 10^8$). The orders are given in increasing order of when they were placed, i.e. $s_ i < s_ j$ and $t_ i < t_ j$ for all $1 \le i < j \le k$.
Hannah’s pizzeria is located at road intersection $1$, and Holly and her delivery car are stationed at the pizzeria at time $0$. It is possible to reach any road intersection from the pizzeria.
Output
Output a single integer denoting the longest time a customer has to wait from the time they place their order until the order is delivered, assuming that Holly uses a delivery schedule minimizing this value.
Sample Input 1 | Sample Output 1 |
---|---|
4 4 1 2 2 2 3 4 3 4 1 4 1 2 3 1 4 2 3 3 3 4 3 6 |
6 |
Sample Input 2 | Sample Output 2 |
---|---|
3 2 1 2 1 3 2 2 4 0 3 1 1 3 3 2 2 4 4 3 6 |
8 |