⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 p104.dpr

📁 zhy关于acm.sgu.ru的OJ上题目的参考程序。 包含了里面大部分的题目
💻 DPR
字号:
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE GUI}
{$R+,Q+,S+}
Const
    InFile     = 'p104.in';
    OutFile    = 'p104.out';
    Limit      = 100;

Type
    Tdata      = array[1..Limit , 1..Limit] of integer;
    Topt       = array[1..Limit + 1 , 1..Limit + 1] of
                   record
                       max , next            : integer;
                   end;

Var
    data       : Tdata;
    opt        : Topt;
    N , F      : integer;

procedure init;
var
    i , j      : integer;
begin
//    assign(INPUT , InFile); ReSet(INPUT);
      read(F , N);
      for i := 1 to F do
        for j := 1 to N do
          read(data[i , j]);
//    Close(INPUT);
end;

procedure work;
var
    i , j      : integer;
begin
    fillchar(opt , sizeof(opt) , 0);
    for i := F downto 1 do
      for j := N - (F - i) downto 1 do
        begin
            opt[i , j].max := -maxlongint;
            if opt[i + 1 , j + 1].max + data[i , j] > opt[i , j].max then
              begin
                  opt[i , j].max := opt[i + 1 , j + 1].max + data[i , j];
                  opt[i , j].next := j;
              end;
            if (j < N - (F - i)) and (opt[i , j + 1].max > opt[i , j].max) then
              opt[i , j] := opt[i , j + 1];
        end;
end;

procedure out;
var
    i , p      : integer;
begin
//    assign(OUTPUT , OutFile); ReWrite(OUTPUT);
      writeln(opt[1 , 1].max);
      p := 1;
      for i := 1 to F do
        begin
            p := opt[i , p].next;
            write(p);
            inc(p);
            if i = N then
              writeln
            else
              write(' ');
        end;
//    Close(OUTPUT);
end;

Begin
    init;
    work;
    out;
End.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -