码迷,mamicode.com
首页 > 其他好文 > 详细

不同的路径 II

时间:2015-09-09 21:05:05      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:

class Solution {
public:
    /**
     * @param obstacleGrid: A list of lists of integers
     * @return: An integer
     */ 
    int uniquePathsWithObstacles(vector<vector<int> > &obstacleGrid) {
        // write your code here
        int m = obstacleGrid.size();
        if(m==0) return 0;
        int n = obstacleGrid[0].size();
        int a[m][n];
        int temp=100;
        for(int i=0;i<m;++i){
            a[i][0]=1;
            if(obstacleGrid[i][0]==1){
                temp = i;
                a[i][0]=0;
            }
            if(i>=temp)
                a[i][0]=0;
        }
        temp = 100;
        for(int j=0;j<n;++j){
            a[0][j]=1;
            if(obstacleGrid[0][j]==1){
                temp = j;
                a[0][j]=0;
            }
            if(j>=temp)
                a[0][j]=0;
        }
        for(int i =1;i < m;++i){
            for(int j =1;j<n;++j){
                a[i][j]=a[i-1][j]+a[i][j-1];
                if(obstacleGrid[i][j]==1)
                    a[i][j]=0;
            }
        }
        return a[m-1][n-1];
    }
};

 

不同的路径 II

标签:

原文地址:http://www.cnblogs.com/smallby/p/4795706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!