Alice and Bob’s Trip

Alice and Bob are going on a trip. Alice is a lazy girl who wants to minimize the total travelling distance, while Bob as an active boy wants to maximize it. At the same time, they cannot let the value to be less than a given integer L since that will make them miss too much pleasure, and they cannot let the value to be greater than a given integer R since they don’t want to get too exhausted. The city they are visiting has n spots and the spots are connected by directed edges. The spots are connected in such a way that they form a tree and the root will always be at spot 0. They take turns to select which edge to go. Both of them choose optimally. Bob will go first. Input There are multiple test cases. For every test case, the first line has three integers, n, L and R (1 ≤ n ≤ 500000, 0 ≤ L, R ≤ 1000000000). The next n − 1 lines each has three integers a, b and c, indicating that there is an edge going from spot a to spot b with length c (1 ≤ c ≤ 1000). The spots are labeled from 0 to n−1. There is a blank line after each test case. Proceed to the end of file. Output If the total distance is not within the range [L, R], print ‘Oh, my god!’ on a single line. Otherwise, print the most value Bob can get. Sample Input 324 011 025 728 011 021 131 1 4 10 251 265 748 011 021 131 142 251 265 426 011

2/2 121 135 Sample Output Oh, my god! 2 6 2