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

剑指offer 10:矩形覆盖

时间:2019-04-18 17:15:37      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:return   color   col   +=   ret   ctc   off   题目   重叠   

 

题目描述

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

public class Solution {
    public int RectCover(int n) {
        int x = 1, y = 2;
        if(n <= 2) return n;
        for(int i = 3; i <= n; i++){
            y += x;
            x = y - x;
        }
        return y;
    }
}

 

剑指offer 10:矩形覆盖

标签:return   color   col   +=   ret   ctc   off   题目   重叠   

原文地址:https://www.cnblogs.com/MiaoPlus/p/10730286.html

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