一. 题目描述
Given a m n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.
Note: You can only move either down or right at any point in time
二. 题目分析
题目的大意是,给定一个m*n
的网格,每个格子里有一个非负整数,找到一条从左上角到右下角的路径,使其经过的格子数值之和最小,每一步只能向右或向下走。
动态规划,可以使用一个m*n
的矩阵来存储到达每个位置的最小路径和。每个位置的最小路径和应该等于自身的值加上左侧或者上面两者中的极小值。这样很容易写出状态转移公式:
f[i][j] = min(f[i-1][j], f[i][j-1]) + grid[i][j]
三. 示例代码
#include <iostream>
#include <vector>
using namespace std;