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

做线性dp类的题目时,对菲波拉契数列的特殊理解

时间:2020-09-16 12:27:08      阅读:34      评论:0      收藏:0      [点我收藏+]

标签:tin   来源   技术   ble   main   题目   return   info   数列   

技术图片

 

 

#include <iostream>
using namespace std;
const int N = 60;
long long dp[N];
int n;
void show(){
    dp[0]=0;dp[1]=1;
    dp[2]=2;dp[3]=3;dp[4]=4;
    for(int i=5;i<=N;i++){
        dp[i]=dp[i-1]+dp[i-3];//重点
    }
}
int main()
 { 
  show();
     while(cin>>n&&(n!=0)){
         cout<<dp[n]<<endl;
     }
     return 0;
 }

技术图片

 

 

import  java.util.Scanner; 
public class jieti {
    static int N = 45;
    static int [] dp= new int[N];
	public static void main(String[] args) {
	  Scanner input =new Scanner(System.in);
	  int t = input.nextInt();
	  dp[2]=1;dp[3]=2;
	  for(int i=4;i<N;i++) {
		  dp[i] = dp[i-1]+dp[i-2];//区别
		  
	  }
	  for(int i=1;i<=t;i++) {
		 int n=input.nextInt();
		 System.out.println(dp[n]);
	  }
	 input.close();
	}
	
}

 两个题的来源:http://acm.hdu.edu.cn/showproblem.php?pid=2041  http://acm.hdu.edu.cn/showproblem.php?pid=2018

其中的妙用需自己体会,我是瞎猫碰死耗子。

加油,到老也要热泪盈眶。

 

做线性dp类的题目时,对菲波拉契数列的特殊理解

标签:tin   来源   技术   ble   main   题目   return   info   数列   

原文地址:https://www.cnblogs.com/yusuph/p/13604909.html

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