码迷,mamicode.com
首页 > 编程语言 > 详细

华为上机机试练习--------------------矩形覆盖---------------------java语言描述

时间:2018-10-01 15:05:32      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:语言   style   lse   重叠   pre   target   覆盖   span   code   

 

 

题目描述

我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法?

 

 

题解:

直接找规律,发现a[i] = a[i - 1] + a[i - 2];

 

 

public class Solution {
    public int RectCover(int target) {
        if(0 == target){
            return 0;
        }else if(1 == target){
            return 1;
        }
        int[] res = new int[target+1];
        res[0] = 1;
        res[1] = 1;
        for(int i = 2; i <= target; i++){
            res[i] = res[i-1] + res[i-2];
        }
        return res[target];
    }
}

 

华为上机机试练习--------------------矩形覆盖---------------------java语言描述

标签:语言   style   lse   重叠   pre   target   覆盖   span   code   

原文地址:https://www.cnblogs.com/guodao/p/9734658.html

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