基础DP背包

Posted lsworld

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础DP背包相关的知识,希望对你有一定的参考价值。

01背包

P2871 手链Charm Bracelet

#include<iostream>
#include<cstdio>
using namespace std;
#define tcl(a,b,c) for(a=b;a<=c;a++)
#define etc(a,b,c) for(a=b;a>=c;a--)
const int maxx=100001;
int w[maxx],v[maxx],f[maxx];
int main()
{
    int n,m,i,j;
    cin>>n>>m;
    tcl(i,1,n)
    {
        cin>>w[i]>>v[i];
    }
    tcl(i,1,n)
    {
        etc(j,m,w[i])
        {
            if(f[j-w[i]]+v[i]>f[j])
               f[j]=f[j-w[i]]+v[i]; //01背包核心
        }
    }
    cout<<f[m]<<endl;
    return 0;
}

完全背包

P2722 总分 Score Inflation

#include<iostream>
#include<cstdio>
using namespace std;
#define tcl(a,b,c) for(a=b;a<=c;a++)
#define etc(a,b,c) for(a=b;a>=c;a--)
const int maxx=100001;
int w[maxx],v[maxx],f[maxx];
int main()
{
    int n,m,i,j;
    cin>>m>>n;
    tcl(i,1,n)
    {
        cin>>v[i]>>w[i];
    }
    tcl(i,1,n)
    {
        tcl(j,w[i],m)
        {
            if(f[j-w[i]]+v[i]>f[j])
               f[j]=f[j-w[i]]+v[i]; 
        }
    }
    cout<<f[m]<<endl;
    return 0;
}

水啊

以上是关于基础DP背包的主要内容,如果未能解决你的问题,请参考以下文章

背包问题

基础DP背包

模板:三大基础背包

HDU 2602 Bone Collector (01背包DP)

01 背包基础 - 空间优化 (滚动数组,一维阵列)

背包DP