vote up 9 vote down star
11

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.

flag
9  
Sorry, I don't see this as a real programming question. I know it's popular to do these kinds of challenges on here, but I don't really think they are appropriate for SO. Feel free to disagree with me, but I'm voting to close as 'not a real question'. – unforgiven3 Jul 6 at 22:49
5  
feels like homework to me – chupacabra Jul 6 at 22:58
4  
plz send teh codez – ChrisW Jul 6 at 23:03
5  
@Chris: Sadly, most computer science classes wouldn't give homework on this level of problem. – Jimmy Jul 6 at 23:05
2  
I also smell homework. – Loren Pechtel Jul 6 at 23:19
show 18 more comments

closed as not a real question by unforgiven3, ChrisW, John Kugelman, Cameron MacFarland, Simucal Jul 7 at 5:21

3 Answers

vote up 0 vote down

This is an optimization problem. Aren't these problems solved with genetic algorithms?

link|flag
They can be, but there are plenty of optimization algorithms. – Lance Roberts Jul 6 at 23:18
vote up 0 vote down

The first step is to realize what is "saved" when plots are combined. If you draw it out visually, you will see the "plot of interception", which is equivalent to the amount that is saved when the plots are combined.

The input value domains aren't prohibitively high, so I suspect a naive algorithm with some rudimentary optimizations should be enough to solve the problem. There may be better ways to do things, or even an algorithm with linear time (it looks to be possible). Of course, this is an exercise left up to whoever is implementing a solution.

link|flag
The best I could come up with was O(nlogn). – snake Jul 6 at 23:48
1  
Honest question here. This is given as part of an assignment or competition right? Isn't this technically cheating? – unknown (google) Jul 6 at 23:55
Linear time?? This involves the interaction of plots, I really can't imagine how it can be done in linear time. I don't even see n log n as this would mean you were able to avoid evaluating the combination of the current plot with most of the other plots. – Loren Pechtel Jul 7 at 0:21
1  
This was part of a competition 2 years ago. The problem statement, full test data, and solutions have been released. So no, this is not cheating. – snake Jul 7 at 1:10
So what's your question then, @snake? – Jim Ferrans Jul 7 at 1:55
vote up 0 vote down

Nevermind--the update to the problem renders this unworkable. There's no way it's going to do N=50,000 in 1 second.

Delphi. It's in theory an O(n^3) algorithm but I'm getting timings so short that it's often reporting zero. You didn't specify how the program was supposed to work, this leaves the timing and the answer on the screen.

The basic approach is to find two plots on the list that can be combined at a lower cost than the two separate. Find the best deal of this type, combine them and repeat until you don't find any to combine.

I do worry a bit that there might be combos that can only be detected by examining more than two plots at once but looking for them I think would be O(scary).

program BuyLand;

uses
  madExcept,
  madLinkDisAsm,
  madListHardware,
  madListProcesses,
  madListModules,
  Forms,
  Main in 'Main.pas' {Form1};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

and the main form (the form consists of a Box : tListBox aligned to the client. I know putting all the logic in FormCreate isn't good practice but for something like this, why bother?):

unit Main;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
     Box: TListBox;
     procedure FormCreate(Sender: TObject);
  private
     { Private declarations }
  public
     { Public declarations }
  end;

var
  Form1: TForm1;

implementation

Uses
    Math
    ;

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);

Type
    tPlot				= Record
    		X			: Integer;
    		Y			: Integer;
    		Cost		: Integer;
    	End;

Var
    Plots				: Array of tPlot;

    Procedure Setup;

    Var
    	Inputs			: tStringList;
    	Loop				: Integer;
    	Space				: Integer;

    Begin
    	Inputs := tStringList.Create;
    	Inputs.LoadFromFile('Acquire.in');
    	SetLength(Plots, StrToInt(Inputs[0]));
    	For Loop := Low(Plots) to High(Plots) do
    		Begin
    			Space := Pos(' ', Inputs[Loop + 1]);
    			Plots[Loop].X := StrToInt(Trim(Copy(Inputs[Loop + 1], 1, Space)));
    			Plots[Loop].Y := StrToInt(Trim(Copy(Inputs[Loop + 1], Space, MaxInt)));
    			Plots[Loop].Cost := Plots[Loop].X * Plots[Loop].Y;
    		End;
    	Inputs.Free;
    End;

    Function	Merge : Boolean;

    Var
    	Outer			: Integer;
    	Inner			: Integer;
    	MaxGain		: Integer;
    	HitOuter		: Integer;
    	HitInner		: Integer;
    	NewCost		: Integer;
    	Gain			: Integer;

    Begin
    	Result := False;
    	MaxGain := 0;
    	For Outer := Low(Plots) to High(Plots) - 1 do
    		For Inner := Outer + 1 to High(Plots) do
    			Begin
    				NewCost := Max(Plots[Outer].X, Plots[Inner].X) * Max(Plots[Outer].Y, Plots[Inner].Y);
    				Gain := Plots[Outer].Cost + Plots[Inner].Cost - NewCost;
    				If Gain > MaxGain then
    					Begin
    						MaxGain := Gain;
    						HitOuter := Outer;
    						HitInner := Inner;
    					End;
    			End;
    	If MaxGain > 0 then
    		Begin
    			Plots[HitOuter].X := Max(Plots[HitOuter].X, Plots[HitInner].X);
    			Plots[HitOuter].Y := Max(Plots[HitOuter].Y, Plots[HitInner].Y);
    			Plots[HitOuter].Cost := Plots[HitOuter].X * Plots[HitOuter].Y;
    			Plots[HitInner] := Plots[High(Plots)];
    			SetLength(Plots, Length(Plots) - 1);
    			Result := True;
    		End;
    End;

    Procedure Totals;

    Var
    	Loop			: Integer;
    	Cost			: Integer;
    	OutFile		: tStringList;

    Begin
    	Cost := 0;
    	For Loop := Low(Plots) to High(Plots) do
    		Cost := Cost + Plots[Loop].Cost;
    	Box.Items.Add('Total cost ' + IntToStr(Cost));
    	OutFile := tStringList.Create;
    	OutFile.Add(IntToStr(Cost));
    	OutFile.SaveToFile('Acquire.Out');
    	OutFile.Free;
    End;

begin
    Box.Items.Add('Start = ' + FormatDateTime('ss.zzz', Now));
    Setup;
    While Merge do ;
    Totals;
    Box.Items.Add('Finish = ' + FormatDateTime('ss.zzz', Now));
end;

end.
link|flag
I doubt that this algorithm yields the correct result for the second test case, because you get the correct answer (2773164) when grouping 9 of the 10 plots (everything except 1910,54). Did you test it on this test case? – Daniel Rinser Jul 7 at 3:20
I wrote it using the second set of test data. Note that I keep trying until I make a pass and find nothing to combine. – Loren Pechtel Jul 7 at 3:44

Not the answer you're looking for? Browse other questions tagged or ask your own question.