BZOJ 1618: [Usaco2008 Nov]Buying Hay 购买干草( dp )

无限背包dp..

因为题目中说至少到 H 磅 , 我就直接把 H * 2 了..

--------------------------------------------------------------------------

#include<cstdio>

#include<algorithm>

#include<cstring>

#include<iostream>

#define rep( i , n ) for( int i = 0 ; i < n ; ++i )

#define clr( x , c ) memset( x , c , sizeof( x ) )

using namespace std;

const int maxn = int( 1e5 ) + 5;

const int inf = 0x3f3f3f3f;

int d[ maxn ];

int main() {

// freopen( "test.in" , "r" , stdin );

int n , h;

cin >> n >> h;

h *= 2;

clr( d , inf );

d[ 0 ] = 0;

rep( i , n ) {

int w , v;

scanf( "%d%d" , &w , &v );

for( int i = w ; i <= h ; i++ )

d[ i ] = min( d[ i ] , d[ i - w ] + v );

}

int ans = inf;

for( int i = h / 2 ; i <= h ; i++ )

ans = min( ans , d[ i ] );

cout << ans << "\n";

return 0;

}

--------------------------------------------------------------------------

1618: [Usaco2008 Nov]Buying Hay 购买干草

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 749  Solved: 379
[Submit][Status][Discuss]

Description

约翰的干草库存已经告罄,他打算为奶牛们采购日(1≤日≤50000)磅干草.

他知道N(1≤N≤100)个干草公司,现在用1到N给它们编号.第i个公司卖的干草包重量为Pi(1≤Pi≤5000)磅,需要的开销为Ci(l≤Ci≤5000)美元.每个干草公司的货源都十分充足,可以卖出无限多的干草包.    帮助约翰找到最小的开销来满足需要,即采购到至少H磅干草.

Input

第1行输入N和日,之后N行每行输入一个Pi和Ci.

Output

最小的开销.

Sample Input

2 15
3 2
5 3

Sample Output

9

FJ can buy three packages from the second supplier for a total cost of 9.

HINT

Source

Silver

时间: 2024-10-13 18:42:53

BZOJ 1618: [Usaco2008 Nov]Buying Hay 购买干草( dp )的相关文章

[BZOJ] 1618: [Usaco2008 Nov]Buying Hay 购买干草

1618: [Usaco2008 Nov]Buying Hay 购买干草 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 1216  Solved: 633[Submit][Status][Discuss] Description 约翰的干草库存已经告罄,他打算为奶牛们采购H(1≤H≤50000)磅干草,他知道N(1≤N≤100)个干草公司,现在用1到 N给它们编号.第i个公司卖的干草包重量为Pi(1≤Pi≤5000)磅,需要的开销为Ci(l≤Ci≤5

bzoj1618: [Usaco2008 Nov]Buying Hay 购买干草 完全背包

题目:http://www.lydsy.com/JudgeOnline/problem.php?id=1618 1618: [Usaco2008 Nov]Buying Hay 购买干草 Time Limit: 5 Sec Memory Limit: 64 MB Submit: 939 Solved: 481 [Submit][Status][Discuss] Description 约翰的干草库存已经告罄,他打算为奶牛们采购日(1≤日≤50000)磅干草. 他知道N(1≤N≤100)个干草公司,

bzoj1618[Usaco2008 Nov]Buying Hay 购买干草*

bzoj1618[Usaco2008 Nov]Buying Hay 购买干草 题意: n种物品,每种无限个,重量为pi,费用为ci,要求总重量超过h的前提费用最小.求最小费用.n≤100,m≤50000. 题解: dp.f[i][j]=min(f[i-1][j],f[i][j-p[i]]+c[i]),边界f[0][0]=0,f[0][1..m+mx]=INF.最后在f[n][m..m+mx]中找一个最小的. 代码: 1 #include <cstdio> 2 #include <cstr

[Usaco2008 Nov]Buying Hay 购买干草[背包]

Description 约翰的干草库存已经告罄,他打算为奶牛们采购日(1≤日≤50000)磅干草. 他知道N(1≤N≤100)个干草公司,现在用1到N给它们编号.第i个公司卖的干草包重量为Pi(1≤Pi≤5000)磅,需要的开销为Ci(l≤Ci≤5000)美元.每个干草公司的货源都十分充足,可以卖出无限多的干草包.    帮助约翰找到最小的开销来满足需要,即采购到至少H磅干草. Input 第1行输入N和日,之后N行每行输入一个Pi和Ci. Output 最小的开销. Sample Input

BZOJ 1618: [Usaco2008 Nov]Buying Hay

题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=1618 解:我看了半天觉得很像完全背包,可是又没法按套路来,于是翻了别人的题解,发现真是啊!!(一道神奇的背包) 我们发现也许最终的重量会超过H,但超过的部分绝对会小于maximum(p[i])(你总不会在已经买够了的情况下,再多买浪费钱吧),所以我们只要假设一个空间为H+maximum(p[i])的背包就可以了,然后套路一下,最后在(f[H]~f[maximum(p[i])])中找最优解

BZOJ 1231: [Usaco2008 Nov]mixup2 混乱的奶牛( dp )

状压dp dp( x , S ) 表示最后一个是 x , 当前选的奶牛集合为 S , 则状态转移方程 : dp( x , S ) =  Σ dp( i , S - { i } )  ( i ∈ S , abs( h[ i ] - h[ x ] ) > k ) ------------------------------------------------------------------------------------------- #include<cstdio> #includ

[bzoj 1606] [Usaco2008 Dec]Hay For Sale 购买干草 (dp)

1606: [Usaco2008 Dec]Hay For Sale 购买干草 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 1307  Solved: 964[Submit][Status][Discuss] Description 约翰遭受了重大的损失:蟑螂吃掉了他所有的干草,留下一群饥饿的牛.他乘着容量为C(1≤C≤50000)个单位的马车,去顿因家买一些干草.  顿因有H(1≤H≤5000)包干草,每一包都有它的体积Vi(l≤Vi≤C).约翰只

[BZOJ] 1620: [Usaco2008 Nov]Time Management 时间管理

1620: [Usaco2008 Nov]Time Management 时间管理 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 850  Solved: 539[Submit][Status][Discuss] Description Ever the maturing businessman, Farmer John realizes that he must manage his time effectively. He has N jobs

BZOJ 1230: [Usaco2008 Nov]lites 开关灯( 线段树 )

线段树.. --------------------------------------------------------------------------------- #include<cstdio> #include<algorithm> #include<cstring> #include<iostream> #define rep( i , n ) for( int i = 0 ; i < n ; ++i ) #define clr( x