Submission #1811480


Source Code Expand

{$mode objfpc}
{$COPERATORS ON}
uses math;
const fi='phidias.inp'; fo='phidias.out';
type Titems=record w,h:longint; end;
var fin,fout:Text;
    n,R,C,nTest:longint;
    a:array[1..200+3] of Titems;
    f:array[0..600+7,0..600+7] of longint;
procedure doc;
    var i:longint;
    begin
    readln(fin,C,R);
    readln(fin,n);
        for i:=1 to n do
            read(fin,a[i].w,a[i].h);
    end;
function DP(row,col:longint):longint;
    var Res,i:longint;
    begin
    if F[Row,Col]<>-1 then exit(f[Row,Col]);
    Res:=Row*Col;
        for i:=1 to n do
            if (Row=a[i].h) and (Col=a[i].w) then Res:=0;
        for i:=1 to Row-1 do
            Res:=min(Res,DP(i,Col)+DP(Row-i,Col));
        for i:=1 to Col-1 do
            Res:=min(Res,DP(Row,i)+DP(Row,Col-i));
    F[Row,Col]:=Res;
    Exit(Res);
    end;
procedure Solve;
    begin
        fillchar(F,sizeof(F),255);
        writeln(fout,DP(R,C));
    end;
begin
    assign(fin,fi);
    assign(fout,fo);
    reset(fin);rewrite(fout);
        readln(fin,nTest);
        repeat
            Doc;
            Solve;
        dec(nTest);
        until nTest=0;
    close(fin);close(fout);
end.

Submission Info

Submission Time
Task 13 - Phidias
User ndhp2000
Language Pascal (FPC 2.6.2)
Score 0
Code Size 1200 Byte
Status RE
Exec Time 0 ms
Memory 128 KB

Compile Error

/usr/bin/ld.bfd: warning: ./link.res contains output sections; did you forget -T?

Judge Result

Set Name Set01 Set02 Set03 Set04 Set05 Set06 Set07 Set08 Set09 Set10 Set11 Set12 Set13 Set14 Set15 Set16 Set17 Set18 Set19 Set20
Score / Max Score 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5 0 / 5
Status
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
RE × 1
Set Name Test Cases
Set01 01
Set02 02
Set03 03
Set04 04
Set05 05
Set06 06
Set07 07
Set08 08
Set09 09
Set10 10
Set11 11
Set12 12
Set13 13
Set14 14
Set15 15
Set16 16
Set17 17
Set18 18
Set19 19
Set20 20
Case Name Status Exec Time Memory
01 RE 0 ms 128 KB
02 RE 0 ms 128 KB
03 RE 0 ms 128 KB
04 RE 0 ms 128 KB
05 RE 0 ms 128 KB
06 RE 0 ms 128 KB
07 RE 0 ms 128 KB
08 RE 0 ms 128 KB
09 RE 0 ms 128 KB
10 RE 0 ms 128 KB
11 RE 0 ms 128 KB
12 RE 0 ms 128 KB
13 RE 0 ms 128 KB
14 RE 0 ms 128 KB
15 RE 0 ms 128 KB
16 RE 0 ms 128 KB
17 RE 0 ms 128 KB
18 RE 0 ms 128 KB
19 RE 0 ms 128 KB
20 RE 0 ms 128 KB