• 取数字问题:动态规划


    题意

    给定M*N的矩阵,其中的每个元素都是-10到10之间的整数。你的任务是从左上角(1,1)走到右下角(M,N),每一步只能向右或向下,并且不能走出矩阵的范围。你所经过的方格里面的数字都必须被选取,请找出一条最合适的道路,使得在路上被选取的数字之和是尽可能小的正整数。


    分析

    设f[i,j,k]为到i、j,数k存不存在 
    if a[i-1,j,k]=true then f[i,j,k+a[i,j]]:=true 
    if a[i,j-1,k]=true then f[i,j,k+a[i,j]]:=true


    var
    m,n,i,j,k,bz:longint;
    a:array[0..11,0..11]of longint;
    f:array[0..11,0..11,-2000..2000]of boolean;
    begin
        readln(n,m);
        for i:=1 to n do
        begin
            for j:=1 to m do
            read(a[i,j]);
            readln;
        end;
        fillchar(f,sizeof(f),false);
        f[1,1,a[1,1]]:=true;


        for i:=2 to m do
        for k:=-1000 to 1000 do
        if f[1,i-1,k] then f[1,i,k+a[1,i]]:=true;


        for i:=2 to n do
        for k:=-1000 to 1000 do
        if f[i-1,1,k] then f[i,1,k+a[i,1]]:=true;


        for i:=2 to n do
        begin
            for j:=2 to m do
            begin
                for k:=-1000 to 1000 do
                if f[i,j-1,k] then f[i,j,k+a[i,j]]:=true;


                for k:=-1000 to 1000 do
                if f[i-1,j,k] then f[i,j,k+a[i,j]]:=true;
            end;
        end;
        i:=1;
        while (f[n,m,i]=false)and(i<=1000) do inc(i);
        if i>1000 then write(-1) else write(i);
    end.

  • 相关阅读:
    shell test -n -z
    java -d64
    shell export
    topngroupcollector
    stat 查看文件修改时间
    随机30道小学计算题02(修改)
    设计四则运算2程序单元测试用例
    学习进度02
    随机30道小学计算题02
    随机30道小学计算题01
  • 原文地址:https://www.cnblogs.com/YYC-0304/p/9500169.html
Copyright © 2020-2023  润新知