Problem hidden
This problem was hidden by Editorial Board member probably because it has incorrect language version or invalid test data, or description of the problem is not clear.

Problem hidden on 2013-09-03 20:54:46 by Mitch Schwartz ?

DELIVERY - Delivery plan

no tags 

Fry is an intergalactic delivery boy that spends all day trying to impress Lila. He wants to prove her that he's a smart guy so he wants to find routs between the different planets he must travel to by himself. Of course, he wants these routs to be as short as possible. Because of space pirates, meteor showers and other dangerous things, it's safe to travel only between certain pairs of planets. Help him find a good delivery plan so he can win Lila's heart. By Fry's observations, there is a safe route between any 2 destinations and the shortest one always passes through no more then 50 planets.

Input

The first line of input contains 2 integer, N and M (N≤50.000, M≤250.000), representing the number of planets and the number of direct routs between them. The next M lines contain 3 integers, X, Y, L (1≤L≤1.000.000) meaning that there is a safe connexion between planet X and planet Y of length L. The M+2-th line contains a number NQ (NQ≤5.000) and then follow NQ lines with 2 integers A and B meaning that Fry should take a package from planet A to B.

Output

Output must contain NQ lines, each line containing a number Nr (Nr≤100) and Nr integers representing the planets in the order you visit them. If Nr is -1 then that means that you want to skip this query.

Score

For each answered query you will receive (Best/Length)2 points, where Best is the shortest length you can get when traveling between the planets you should have delivered a package and Length is the length of your route.

Example

Input:
5 5
1 4 1
2 1 2
2 5 2
4 5 2
2 3 3
3
1 5
3 4
3 1

Output:
3 1 4 5
4 3 2 1 4
3 3 2 1

Notes: This solution should receive 3 points. If you don't get AC on one of the 6 input cases, your score on that test case is 0 but you keep the points from the other inputs.


hide comments
Mitch Schwartz: 2013-09-03 18:53:37

I'm hiding this problem for now, as I believe there is an error with the judging. I contacted the author in May, he responded in June saying he was busy but would take a look when time permitted; I asked for an update in July, and now it's September with no response. It is still possible to submit even though the problem is hidden. Feel free to discuss this decision by leaving a new comment. People who have gotten AC with non-zero score may be in a good position to help answer questions about whether and how the judge is defective. For me it is too tedious to try to experiment with the judge further, since as I mentioned before it suppresses the normal status codes.

Mitch Schwartz: 2013-05-02 10:56:27

I've written to the problem setter about a possible faulty judge. Or I suppose it could also be a case of incorrect test data. Essentially my code uses a simple approach that shouldn't give a great score, but it should give a nonzero score. My code might have a bug, but it got AC for another problem with few modifications, and for here it's impossible to do assertions to gather more info, because the judge suppresses normal status codes. If anyone who's gotten a nonzero score would like to offer opinions or insights about the judging, please do so. You may leave a comment or contact me directly through PM on the forum. If there are no replies, the problem may be hidden.

Last edit: 2013-05-02 12:19:11
Mitch Schwartz: 2013-04-22 13:04:02

I keep getting internal error, even for a submission that only prints "-1" for all queries. Some bug with the judge or with SPOJ system?

[snip]

The internal errors seem to have been from a temporary bug in SPOJ system, but now I'm puzzled by getting score of 0. Skipping a query still lets you get points for other queries, doesn't it? I have some doubts about the correctness of the judging.

It's also strange that most submissions with 0 score show 0.00s time and 0k memory usage, but not all, e.g. Paweł Banaszkiewicz's submission on the page http://www.spoj.com/ranks/DELIVERY/ .

And debugging is a little ridiculous because the normal status codes are suppressed by the judge, e.g. infinite loop code still results in AC 0. I guess this could be ok if it was done intentionally to make debugging your own code harder, but it's no good for trying to debug the judge itself.

Last edit: 2013-04-25 11:42:02
Aditya Pande: 2012-06-06 04:45:35

why is it showing memory usage zero k

isak: 2011-10-28 15:43:55

FUTURAMA


Added by:Gogu
Date:2006-05-27
Time limit:0.100s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource: