|
||||||||||
Rolling HongshuTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65768/65768 K (Java/Others)Total Submission(s): 2138 Accepted Submission(s): 672 Problem Description To see his girl friend, sweet potato has to go over thousands of mountains. What make things worse, many bitter potatoes lives in these mountains. They hate sweet potato because they don't have girl friends. In the world of potatoes, friction force does not exist. So the way potatoes travel is very simple: they start with an initial speed, rolling forward and waiting to get to the destination. Bitter potatoes lived in different places. When sweet potato rolls passing their home, they begin to chase him (surely by rolling with an initial speed). If sweet potato is caught by a bitter potato, his date with girl friend has to be canceled. Now sweet potato wants to know the minimum initial speed necessary to see his girl friend. Input First line is an integer T (T ¡Ü 50), the number of test cases. At the beginning of each case is three integers, N, M and w, indicate the number of peaks in the mountains, the number of bitter potatoes and the weight of sweet potato separately. 2 ¡Ü N ¡Ü 1000, 0 ¡Ü M ¡Ü 1000, 0 < w < 100000. The next N lines each contain a pair of integers. Each pair of integers xi, hi describe a peak. xi is the horizontal distant between sweet potato's home and the peak. hi is the height of the peak. All xi are different. 0 = x1 < x2 < ¡ < xn ¡Ü 100000000, -100000000 ¡Ü hi ¡Ü 100000000. Between adjacent peaks is a smooth slope. The bitter potatoes are on these slopes. The following M lines each contain 3 integers. Each triple of integers pi, vi, mi describe a bitter potato. pi is the horizontal distant between his home and sweet potato¡¯s home. vi is his initial speed. mi is his weight. 0 < pi < xn, 0 ¡Ü vi ¡Ü 100000000, 0 < mi < 100000 The gravitational constant in potatoes' world is 20. Sweet potato's home is at point (x1, h1). His girl friend lives at point (xn, hn). Output For each case, you should output ¡°Case k: ¡± first. Following a number, the lower bound of sweet potato's initial speed rounded to two decimal places. Sample Input
Sample Output
Source | ||||||||||
|