Minimal Path Using Additive Cost
The sequence is defined by and for .
Let and for
Define an matrix whose values are .
Let be the minimal path sum from (top left) to (bottom right), where each step is either right or down.
You are given , and .
Find .
代价为特定项相加时的最小路径和
序列的定义为:;对于,。
对于,令,。
考虑一个矩阵,其元素值为。
令为从(左上角)移动到(右下角)的最小路径和,每一步只能向右或向下移动。
已知,,。
求。
Gitalking ...