시간 제한메모리 제한제출정답맞힌 사람정답 비율
45 초 (추가 시간 없음) 1024 MB (추가 메모리 없음)822100.000%

문제

Today is your and your twin sibling's birthday. To celebrate, you got a rectangular cake to share. The cake is decorated with N triangular patches of icing (which may overlap). All the icing patches were created with the same triangular mold, so they have the same shape and orientation. Although you and your twin are very similar, your tastes in icing are much different. This difference is formalized by each of you having a different enjoyment value for each patch of icing. Specifically, your enjoyment value for eating the entire i⁠-⁠th patch of icing is Ai, and your twin's is Bi. If someone eats part of a patch, they get enjoyment proportional to the eaten area. For example, if you eat 2/3 of the area of the i⁠-⁠th icing patch, you would get 2Ai/3 enjoyment from it. Note that there may be some flavors of icing that you or your twin do not enjoy, so the Ai and/or Bi values can be negative.

You will cut the cake into two rectangular pieces by making a single vertical cut (parallel to the Y-axis). After cutting the cake, you will eat the left piece and your twin will eat the right piece. Your total enjoyment is the sum of the enjoyment you get from all icing to the left of the cut. Similarly, your twin's enjoyment is the sum of the enjoyment they get from all icing to the right of the cut.

To be as fair as possible, you want to cut the cake such that the absolute value of the difference between your total enjoyment and your twin's total enjoyment is as small as possible. Given the N triangular icing patches on a rectangular cake, what is the minimum possible absolute value of the difference between your and your twin's total enjoyments you can get?

입력

The first line of the input gives the number of test cases, T. T test cases follow. Each test case starts with a line containing three positive integers, N, W, and H, representing the number of icing patches on the cake and the width and height of the top of the cake, respectively. The bottom-left corner of the cake is located at (0, 0) and the top-right corner is at (W, H). Then, a line describing the icing patch mold follows. This line contains four integers: P, Q, R, and S. The icing patch mold is a triangle with vertices at (0, 0), (P, Q), and (R, S). Then, N lines follow. The i⁠-⁠th of these lines contains four integers Xi, Yi, Ai, and Bi. The i⁠-⁠th patch is a triangle with vertices at (Xi, Yi), (Xi + P, Yi + Q), and (Xi + R,Yi + S). You would get Ai enjoyment from eating it and your twin would get Bi enjoyment.

출력

For each test case, output one line containing Case #x: y/z, where x is the test case number (starting from 1) and y/z is the minimum absolute value of the difference between your and your twin's total enjoyment that can be achieved with a single vertical cut as an irreducible fraction (that is, z must be positive and of minimum possible value).

Test Set 1 (20점)

  • 1 ≤ T ≤ 100.
  • 1 ≤ N ≤ 100.
  • 3 ≤ W ≤ 109.
  • 3 ≤ H ≤ 109.
  • −109 ≤ Ai ≤ 109, for all i.
  • −109 ≤ Bi ≤ 109, for all i.
  • 0 ≤ P ≤ 109.
  • −109 ≤ Q ≤ 109.
  • 0 ≤ R ≤ 109.
  • −109 ≤ S ≤ 109.
  • The three vertices of the mold (0, 0), (P, Q), and (R, S) are not collinear.
  • The three vertices of each triangular icing patch are strictly inside the cake's borders. Formally:
    • 1 ≤ Xi ≤ W − max(P, R) − 1, for all i, and
    • max(0, −Q, −S) + 1 ≤ Yi ≤ H − max(0, Q, S) − 1, for all i.

예제 입력 1

4
1 5 5
3 -1 2 2
1 2 -10 5
2 100000000 50000000
80000000 0 40000000 40000000
5000001 2500000 500 -501
15000000 5000000 501 -400
2 10 10
0 2 4 2
2 2 -4 5
4 6 -6 5
3 622460462 608203753
486076103 36373156 502082214 284367873
98895371 126167607 823055173 -740793281
26430289 116311281 -398612375 -223683435
46950301 278229490 766767410 -550292032

예제 출력 1

Case #1: 5/1
Case #2: 288309900002019999899/320000000000000000
Case #3: 37/4
Case #4: 216757935773010988373334129808263414106891/187470029508637421883991794137967

힌트

In Sample Case #1, there is a single icing patch. The optimal cut is to the left of the patch. You will eat no icing and receive 0 enjoyment. Your twin will eat all of the icing patch and receive 5 enjoyment from it. The absolute value of the difference between your and your twin's enjoyments is |0−5|=5.

 

In Sample Case #2, there are two icing patches. The optimal cut is at X = 15099999.99. Notice that the numerator and denominator of the answer can get very large.

 

In Sample Case #3, there are two icing patches. The optimal cut is at X = 4. You will eat 75% of the first icing patch and receive −3 enjoyment from it. Your twin will eat 25% of the first icing patch and all of the second icing patch getting 5 ⋅ 0.25 + 5 = 6.25 enjoyment. The absolute value of the difference between your and your twin's enjoyments is |−3 − 6.25| = 9.25 = 37/4.

Notice that cutting at X = 1 would give you 0 enjoyment and your twin 10 enjoyment. While both of those values are greater than the corresponding enjoyment when cutting at X = 4, the difference between them is 10 > 9.25, which means cutting at X = 4 is preferable anyway.

 

In Sample Case #4, there are three icing patches. The optimal cut is at X ≈ 521241077.6027.

채점 및 기타 정보

  • 예제는 채점하지 않는다.