DISQUERY - Distance Query


The traffic network in a country consists of N cities (labeled with integers from 1 to N) and N-1 roads connecting the cities. There is a unique path between each pair of different cities, and we know the exact length of each road.

Write a program that will, for each of the K given pairs of cities, find the length of the shortest and the length of the longest road on the path between the two cities.

Input

The first line of input contains an integer N, 2 ≤ N ≤ 100 000. Each of the following N-1 lines contains three integers A, B and C meaning that there is a road of length C between city A and city B.

The length of each road will be a positive integer less than or equal to 1 000 000.
The next line contains an integer K, 1 ≤ K ≤ 100 000. Each of the following K lines contains two different integers D and E – the labels of the two cities constituting one query.

Output

Each of the K lines of output should contain two integers – the lengths from the task description for the corresponding pair of the cities.

Sample

Input:
5
2 3 100
4 3 200
1 5 150
1 3 50
3
2 4
3 5
1 2

Output:
100 200
50 150
50 100
Input:
7
3 6 4
1 7 1
1 3 2
1 2 6
2 5 4
2 4 4
5
6 4
7 6
1 2
1 3
3 5

Output:
2 6
1 4
6 6
2 2
2 6

hide comments
shawnliang: 2019-12-21 09:49:58

AC in 2s.why?

abhimanyu_1998: 2019-02-20 20:35:42

binary lifting should do the job

sarwar__05: 2018-09-24 22:49:54

[100002][17] ==> AC in 0.70
[17][100002] ==> AC in 0.55

vaibhav2303: 2018-06-11 13:54:20

Simple sparse table(without binary search) and LCA concept gives AC.

skych: 2017-11-03 15:29:30

Sparse table + fast I/O without any optimization or changing the diameter of the sparse table still get AC (1.00s)

Rezaul H Sagar: 2017-09-27 18:00:53

HLD + fast i/o gives TLE here!

aspro: 2017-06-26 15:32:45

very good question...also solve 609E(codeforces)

Last edit: 2017-06-26 15:33:45
udit_003: 2017-04-10 22:53:30

AC in one go!! good problem must try

Last edit: 2017-04-10 22:54:24
shas19: 2016-07-16 01:08:01

worked with HLD (even though it is an overkill)

Luis Manuel Díaz Barón: 2015-04-23 17:08:02

It's true [20][100005] => ACCEPTED, [20][100005] => TLE
The time limit is too tight.
Nice question.
Solved using LCA <O(NlogN), O(logN)>


Added by:psetter
Date:2009-02-28
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:COI 06