动态规划

64. Minimum Path Sum

Given a m x 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.

class Solution {
public:
    int minPathSum(vector<vector<int>>& grid) {
        int m = grid.size();
        int n = grid[0].size();
        vector<vector<int>> f(m,vector<int>(n,0));
        
        f[0][0] = grid[0][0];
        for(int i=1;i<m;i++)
          f[i][0] = f[i-1][0] + grid[i][0];
        for(int j=1;j<n;j++)
          f[0][j] = f[0][j-1] + grid[0][j];
          
        for(int i=1;i<m;i++)
          for(int j=1;j<n;j++)
          {
              f[i][j] = min(f[i-1][j],f[i][j-1]) + grid[i][j];
          }
        return f[m-1][n-1];
    }
};

62. Unique Paths

A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).

The robot can only move either down or right at any point in time.
The robot is trying to reach the bottom-right corner of the grid (marked
'Finish' in the diagram below).
How many possible unique paths are there?


Above is a 3 x 7 grid. How many possible unique paths are there?
Note: m and n will be at most 100.

class Solution {
public:
    int uniquePaths(int m, int n) {
        vector<vector<int>> f(100,vector<int>(100,0));
        
        f[0][0] = 1;
        for(int i=1;i<m;i++)
          f[i][0] = f[i-1][0];
        for(int j=1;j<n;j++)
          f[0][j] = f[0][j-1];
        
        for(int i=1;i<m;i++)
          for(int j=1;j<n;j++)
          {
              f[i][j] = f[i][j-1] + f[i-1][j];
          }
        return f[m-1][n-1];
    }
};

63. Unique Paths II

Follow up for "Unique Paths":

Now consider if some obstacles are added to the grids. How many unique paths would there be?
An obstacle and empty space is marked as 1 and 0 respectively in the grid.
For example,
There is one obstacle in the middle of a 3x3 grid as illustrated below.

[
  [0,0,0],
  [0,1,0],
  [0,0,0]
]

The total number of unique paths is 2.
Note: m and n will be at most 100.

class Solution {
public:
    int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {
        int m = obstacleGrid.size();
        int n = obstacleGrid[0].size();
        
        vector<vector<int>> f(m,vector<int>(n,0));
        if(obstacleGrid[0][0]==0)
          f[0][0] = 1;
        else
          f[0][0] = 0;
        for(int i=1;i<m;i++)
        {
            if(obstacleGrid[i][0]==0)
              f[i][0] = f[i-1][0];
            else
              f[i][0] = 0;
        }
        for(int j=1;j<n;j++)
        {
            if(obstacleGrid[0][j]==0)
              f[0][j] = f[0][j-1];
            else
              f[0][j] = 0;
        }
        
        for(int i=1;i<m;i++)
          for(int j=1;j<n;j++)
          {
              if(obstacleGrid[i][j]==0)
                f[i][j] = f[i-1][j] + f[i][j-1];
              else
                f[i][j] = 0;
          }
        return f[m-1][n-1];  
    }
};

72. Edit Distance

Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.)

You have the following 3 operations permitted on a word:

a) Insert a character
b) Delete a character
c) Replace a character

class Solution {
public:
    int minDistance(string word1, string word2) {
        int m = word1.size();
        int n = word2.size();
        if(m<=0)
          return n;
        if(n<=0)
          return m;
        
        vector<vector<int>> f(m+1,vector<int>(n+1,0));
        //f[i][j]表示一个长为i的字符串word1变为长为j的字符串word2的最短距离
        f[0][0] = 0;//都没有字母
        for(int i=1;i<=m;i++)
        {
            f[i][0] = i;
        }
        for(int j=1;j<=n;j++)
        {
            f[0][j] = j;
        }
        for(int i=1;i<=m;i++)
          for(int j=1;j<=n;j++)
          {
              if(word1[i-1]==word2[j-1]) //f中的第i个字母,对应的是word1[i-1],第j个字母,对应的是word2[j-1]
                f[i][j] = f[i-1][j-1];
              else
                f[i][j] = min(f[i-1][j-1],min(f[i-1][j],f[i][j-1])) + 1;
          }
        return f[m][n];
    }
};

115. Distinct Subsequences

Given a string S and a string T, count the number of distinct subsequences of T in S.

A subsequence of a string is a new string which is formed from the original string by deleting some (can be none) of the characters without disturbing the relative positions of the remaining characters. (ie, "ACE" is a subsequence of "ABCDE" while "AEC" is not).
Here is an example:
S = "rabbbit", T = "rabbit"
Return 3.

class Solution {
public:
    int numDistinct(string s, string t) {
        int m = s.size();
        int n = t.size();
        if(m<n)
          return 0;
        
        vector<vector<int>> f(m+1,vector<int>(n+1,0));
        //f[i][j]表示一个长为i的字符串word1变为长为j的字符串word2的最短距离
        f[0][0] = 1;//都没有字母
        for(int i=1;i<=m;i++)
        {
            f[i][0] = 1;
        }
        for(int j=1;j<=n;j++)
        {
            f[0][j] = 0;
        }
        for(int i=1;i<=m;i++)
          for(int j=1;j<=n;j++)
          {
              if(s[i-1]!=t[j-1]) //f中的第i个字母,对应的是word1[i-1],第j个字母,对应的是word2[j-1]
                f[i][j] = f[i-1][j];//删除一个字母
              else
                f[i][j] = f[i-1][j-1] + f[i-1][j];//都增加一个字母,或删除s的一个字母
          }
        return f[m][n];
    }
};

118. Pascal's Triangle

Given numRows, generate the first numRows of Pascal's triangle.

For example, given numRows = 5,
Return

[
     [1],
    [1,1],
   [1,2,1],
  [1,3,3,1],
 [1,4,6,4,1]
]
class Solution {
public:
    vector<vector<int>> generate(int numRows) {
        vector<int> temp;
        vector<vector<int>> rec(numRows,temp);
        for(int i=0;i<numRows;i++)
          for(int j=0;j<i+1;j++)
              rec[i].push_back(1);
         
        
        for(int i=1;i<numRows;i++)
            for(int j=1;j<i;j++)
              rec[i][j] = rec[i-1][j-1] + rec[i-1][j];
        
        return rec;
    }
};

119. Pascal's Triangle II

Given an index k, return the kth row of the Pascal's triangle.

For example, given k = 3,
Return [1,3,3,1].

class Solution {
public:
    vector<int> getRow(int rowIndex) {
        vector<int> temp;
        vector<vector<int>> rec(rowIndex+1,temp);
        for(int i=0;i<rowIndex+1;i++)
          for(int j=0;j<i+1;j++)
              rec[i].push_back(1);
         
        
        for(int i=1;i<rowIndex+1;i++)
            for(int j=1;j<i;j++)
              rec[i][j] = rec[i-1][j-1] + rec[i-1][j];
        
        return rec[rowIndex];        
    }
};

120. Triangle

Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.

For example, given the following triangle

[
     [2],
    [3,4],
   [6,5,7],
  [4,1,8,3]
]

The minimum path sum from top to bottom is 11 (i.e., 2 + 3 + 5 + 1 = 11).

class Solution {
public:
    int minimumTotal(vector<vector<int>>& triangle) {
        int m = triangle.size();
        int result = INT_MAX;
        vector<vector<int>> f(m,vector<int>(m,0));
        
        f[0][0] = triangle[0][0];
        for(int i=1;i<m;i++)
        {
            f[i][0] = f[i-1][0] + triangle[i][0];
            f[i][i] = f[i-1][i-1] + triangle[i][i];
            cout<<f[i][0]<<"--"<<f[i][i]<<endl;
        }

        for(int i=1;i<m;i++)
          for(int j=1;j<i;j++)  //j只能到i-1
          {
              f[i][j] = min(f[i-1][j-1],f[i-1][j]) + triangle[i][j];
          }
        for(int k=0;k<m;k++)
        {
            if(f[m-1][k]<result)
              result = f[m-1][k];
            cout<<f[m-1][k]<<" ";
        }
        return result;
    }
};
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容

  • 如果跟一个自己不喜欢,抗拒的人在一起,我想,这样的生活我才会后悔吧。 我不知道大家都在急什么,刚走出校园就要被逼婚...
    纪录回忆阅读 213评论 0 0
  • 11月26日,第53届台湾电影金马奖在台北国父纪念馆举行。周冬雨、马思纯凭借《七月与安生》拿下本届金马双影后奖。 ...
    奶油拌饭阅读 559评论 0 0