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

动态规划问题

时间:2019-03-10 13:52:31      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:规划   简单   ott   递推   ann   problem   方法   otto   scan   

HDU-1284

题目链接

http://acm.hdu.edu.cn/showproblem.php?pid=1284

这是一道背包类型的动态规划题目,题目意思是N块钱,可以有1,2,3元组成,问你有几种兑换方法,简单思考一下,假如说有n元钱,求f(n),f(n)= f(n-1)+f(n-2)+f(n-3)

然后接下来递推或者递归都ok

import java.util.*;
public class Main {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int dp[][] = new int[4][32768];
        for (int i = 1; i < 4; i++) {
            dp[i][0] = 1;
        }
        for (int j = 1; j < 32768; j++) {
            dp[1][j] = 1;
        }
        for (int i = 1; i < 4; i++) {
            for (int j = 1; j < 32768; j++) {
                if (i > j) {
                    dp[i][j] = dp[i - 1][j];
                } else
                    dp[i][j] = dp[i - 1][j] + dp[i][j - i];
            }
        }
        while (in.hasNext()) {
            int n = in.nextInt();
            System.out.println(dp[3][n]);
        }
    }
}

 

 

 

 

动态规划问题

标签:规划   简单   ott   递推   ann   problem   方法   otto   scan   

原文地址:https://www.cnblogs.com/shineyoung/p/10504948.html

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