AtCoder Beginner Contest 136 Contest Duration : 2019 08 04(Sun) 20:00 ~ 2019 08 04(Sun) 21:40 Website : "AtCoder BC 136" 后面几题都挺考思考角度D。 C Build Stairs ...
分类:
其他好文 时间:
2019-08-08 19:12:55
阅读次数:
108
https://www.codewars.com/kata/how-many-stairs-will-suzuki-climb-in-20-years/train/java My Solution : ...
分类:
编程语言 时间:
2019-07-17 18:26:00
阅读次数:
93
递归解决方法 其他人解法也是大同小异 int climbStairs(int n){ int x1=0,x2=1; int i; int sum; for(i=1;i memo = new HashMap(); public int climbStairs(int n) { if(n ...
分类:
其他好文 时间:
2019-07-08 13:28:01
阅读次数:
73
彭罗斯阶梯(Penrose stairs)是一个有名的几何学悖论,指的是一个始终向上或向下但却走不到头的阶梯,可以被视为彭罗斯三角形的一个变体,在此阶梯上永远无法找到最高的一点或者最低的一点。彭罗斯阶梯由英国数学家罗杰·彭罗斯及其父亲遗传学家列昂尼德·彭罗斯于1958年提出。 彭罗斯阶梯不可能在三维 ...
分类:
其他好文 时间:
2019-04-10 12:00:08
阅读次数:
210
Description: You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct wa ...
分类:
编程语言 时间:
2019-04-09 20:39:21
阅读次数:
213
layout: post title: Codeforces Round 272(Div. 2) author: "luowentaoaa" catalog: true tags: mathjax: true codeforces DP 传送门 "A Dreamoon and Stairs" (暴力 ...
分类:
其他好文 时间:
2019-03-31 13:50:39
阅读次数:
154
网址:https://leetcode.com/problems/length-of-longest-fibonacci-subsequence/ 其实就是斐波那契数列,没什么好说的。 注意使用3个变量,而不是数组,可以节约空间。 ...
分类:
其他好文 时间:
2019-03-28 00:32:21
阅读次数:
163
[TOC] 题目描述: 假设你正在爬楼梯。需要 n 阶你才能到达楼顶。 每次你可以爬 1 或 2 个台阶。你有多少种不同的方法可以爬到楼顶呢? 注意:给定 n 是一个正整数。 示例 1: 示例 2: 解法: class Solution { public: int climbStairs(int n ...
分类:
其他好文 时间:
2019-03-19 01:21:59
阅读次数:
167
A. Elevator or Stairs? 签. 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 int x, y, z, t[3]; 5 6 int main() 7 { 8 while (scanf("%d%d%d", &x, &y, ...
分类:
其他好文 时间:
2019-02-07 09:16:57
阅读次数:
161
题目描述: You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can ...
分类:
其他好文 时间:
2019-01-13 14:22:01
阅读次数:
167