动态规划的引入 P1616 疯狂的采药完全背包

Posted jason66661010

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动态规划的引入 P1616 疯狂的采药完全背包相关的知识,希望对你有一定的参考价值。

题目

https://www.luogu.com.cn/problem/P1616

技术图片

 

 题目分析

完全背包

代码

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int f[10000002], v[10002], w[10002];
int main()
{
    int t, m;
    scanf("%d%d", &t, &m);
    for (int i = 1; i <= m; i++)
        scanf("%d%d", &w[i], &v[i]);
    for (int i = 1; i <= m; i++)
        for (int j = w[i]; j <= t; j++)
            f[j] = max(f[j], f[j - w[i]] + v[i]);
    printf("%d", f[t]);
}

以上是关于动态规划的引入 P1616 疯狂的采药完全背包的主要内容,如果未能解决你的问题,请参考以下文章

P1616 疯狂的采药 完全背包模型

动态规划的引入 P1048 采药01背包

背包模型题目集合

背包DP题单★

P1616 疯狂的采药

洛谷——P1616 疯狂的采药