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

5.3(2)----机器人走方格2(CC150)

时间:2015-12-29 12:51:49      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

这道题只需要把障碍点都设为0就可以了。

public static int countWays(int[][] map,int x, int y){

        if( x < 0 || y < 0) return -1;

        int[][] dp = new int[x][y];
        for(int i = 0; i < x; i++){
            if(map[i][0] == 1){
                dp[i][0] = 1;
            }
            else{
                break;
            }
        }
        for(int j = 0; j < y; j++){
            if(map[0][j] != 1) break;
            dp[0][j] = 1;
        }
        for(int i = 1; i < x; i++){
            for(int j = 1; j < y; j++){
                if(map[i][j] != 1){
                    dp[i][j] = 0;
                }
                else{
                    dp[i][j] = dp[i-1][j] + dp[i][j-1];
                }
            }
        }
        return dp[x-1][y-1];
    }
}

 

5.3(2)----机器人走方格2(CC150)

标签:

原文地址:http://www.cnblogs.com/yueyebigdata/p/5085153.html

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