#Lutece0257. Full Tank?

Full Tank?

Migrated from Lutece 257 Full Tank?

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

After going through the receipts from your car trip through Europe this summer, you realised that the gas prices varied between the cities you visited. Maybe you could have saved some money if you were a bit more clever about where you filled your fuel?

To help other tourists (and save money yourself next time), you want to write a program for finding the cheapest way to travel between cities, filling your tank on the way. We assume that all cars use one unit of fuel per unit of distance, and start with an empty gas tank.

Input

The first line of input gives 1n10001 \leq n \leq 1000 and 0m100000 \leq m \leq 10000, the number of cities and roads. Then follows a line with n integers 1pi1001 \leq p_i \leq 100, where pip_i is the fuel price in the ii_th city. Then follow mm lines with three integers 0u,v<n0 \leq u, v < n and 1d1001 \leq d \leq 100, telling that there is a road between uu and vv with length dd. Then comes a line with the number 1q1001 \leq q \leq 100, giving the number of queries, and qq lines with three integers 1c100,s1 \leq c \leq 100, s and ee, where cc is the fuel capacity of the vehicle, ss is the starting city, and ee is the goal.

Output

For each query, output the price of the cheapest trip from ss to ee using a car with the given capacity, or impossible if there is no way of getting from ss to ee with the given car.

Samples

5 5
10 10 20 12 13
0 1 9
0 2 8
1 2 1
1 3 11
2 3 7
2
10 0 3
20 1 4
170
impossible

Resources

Nordic 2007