This problem was written by Paul Christiano in 2007.
I've included 2 test cases below. In 2 days, I will post 3 more test cases and a bounty. If your solution works on the 5 (2+3) test cases, post it as an answer, and I will test it on 5 additional test cases. The first fully working solution (passing all 10 test cases) will be chosen as the accepted answer.
PROBLEM DESCRIPTION:
Farmer John is considering buying more land for the farm and has his eye on N (1 <= N <= 50,000) additional rectangular plots, each with integer dimensions (1 <= width <= 1,000,000; 1 <= length <= 1,000,000).
If FJ wants to buy a single piece of land, the cost is $1/square unit, but savings are available for large purchases. He can buy any number of plots of land for a price in dollars that is the width of the widest plot times the length of the longest plot. Of course, land plots cannot be rotated, i.e., if Farmer John buys a 3x5 plot and a 5x3 plot in a group, he will pay 5x5=25.
FJ wants to grow his farm as much as possible and desires all the plots of land. Being both clever and frugal, it dawns on him that he can purchase the land in successive groups, cleverly minimizing the total cost by grouping various plots that have advantageous width or length values.
Given the number of plots for sale and the dimensions of each, determine the minimum amount for which Farmer John can purchase all of the plots.
INPUT FORMAT:
Input will be in a file named "acquire.in".
- Line 1: A single integer: N
- Lines 2..N+1: Line i+1 describes plot i with two space-separated integers: width and length
OUTPUT FORMAT:
Output to a file named "acquire.out"
- Line 1: The minimum amount necessary to buy all the plots.
SAMPLE INPUT (file acquire.in):
4
100 1
15 15
20 5
1 100
INPUT DETAILS:
There are four plots for sale with dimensions as shown.
SAMPLE OUTPUT (file acquire.out):
500
OUTPUT DETAILS:
The first group contains a 100x1 plot and costs 100. The next group contains a 1x100 plot and costs 100. The last group contains both the 20x5 plot and the 15x15 plot and costs 300. The total cost is 500, which is minimal.
ADDITIONAL TEST CASE(S):
10
811 1153
781 1932
1367 399
1213 1212
1910 54
194 616
1382 1367
1186 632
975 1651
1215 621
Correct Output: 2773164
[EDIT]: Sorry, I forgot to mention that there is a 1 second time-limit (per test case).
[UPDATE]: CLarification on the timing:
TIME LIMIT: 1.000 second time limit per test case
*Does not include compile time. However, your program must compile within 30 seconds.
*Applicable for any test case, regardless of test data difficulty.
JUDGECOMP: 2.400 GHz Intel Core2 Quad Processor
If I do not receive any submissions that run in time, I will accept the closest one on the day the bounty expires.
