Submission #1811495


Source Code Expand

{$mode objfpc}
{$COPERATORS ON}
uses math;
const fi=''; fo='';
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;
    have:array[0..600+7,0..600+7] of boolean;
procedure doc;
    var i:longint;
    begin
    read(fin,C,R);
    read(fin,n);
        for i:=1 to n do
            begin
            read(fin,a[i].w,a[i].h);
            have[a[i].h,a[i].w]:=true;
            end;
    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;
       if have[row,col] then res:=0;
    if Res>0 then
        begin
        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));
        end;
    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 1 - Hermes
User ndhp2000
Language Pascal (FPC 2.6.2)
Score 0
Code Size 1307 Byte
Status RE
Exec Time 44 ms
Memory 1664 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
WA × 1
WA × 1
WA × 1
RE × 1
RE × 1
WA × 1
RE × 1
WA × 1
RE × 1
WA × 1
WA × 1
RE × 1
RE × 1
RE × 1
WA × 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 WA 1 ms 1664 KB
02 WA 1 ms 1664 KB
03 WA 1 ms 1664 KB
04 RE 1 ms 1664 KB
05 RE 0 ms 128 KB
06 WA 1 ms 1664 KB
07 RE 0 ms 128 KB
08 WA 1 ms 1664 KB
09 RE 1 ms 1664 KB
10 WA 1 ms 1664 KB
11 WA 1 ms 1664 KB
12 RE 1 ms 1664 KB
13 RE 0 ms 128 KB
14 RE 0 ms 256 KB
15 WA 44 ms 1664 KB
16 RE 0 ms 128 KB
17 RE 1 ms 1664 KB
18 RE 0 ms 128 KB
19 RE 2 ms 1664 KB
20 RE 1 ms 1664 KB