zoukankan      html  css  js  c++  java
  • HDU 3466 Proud Merchants(01背包)

    题目链接: 传送门

    Proud Merchants

    Time Limit: 1000MS     Memory Limit: 65536K

    Description

    Recently, iSea went to an ancient country. For such a long time, it was the most wealthy and powerful kingdom in the world. As a result, the people in this country are still very proud even if their nation hasn’t been so wealthy any more.
    The merchants were the most typical, each of them only sold exactly one item, the price was Pi, but they would refuse to make a trade with you if your money were less than Qi, and iSea evaluated every item a value Vi.
    If he had M units of money, what’s the maximum value iSea could get?

    Input

    There are several test cases in the input.
    Each test case begin with two integers N, M (1 ≤ N ≤ 500, 1 ≤ M ≤ 5000), indicating the items’ number and the initial money.
    Then N lines follow, each line contains three numbers Pi, Qi and Vi (1 ≤ Pi ≤ Qi ≤ 100, 1 ≤ Vi ≤ 1000), their meaning is in the description.
    The input terminates by end of file marker.

    Output

    For each test case, output one integer, indicating maximum value iSea could get.

    Sample Iutput

    2 10
    10 15 10
    5 10 5
    3 10
    5 10 5
    3 5 6
    2 7 3
    

    Sample Output

    5
    11
    

    解题思路

    题目大意:有n个商品m块钱,给出买每个商品所花费的钱P、钱包里需要至少Q才有资格买、商品的价值V。问你如何购买商品的价值最大。
    考虑下面的例子:A:p1=5, q1=10, v1=5; B:p2=3, q2=5, v2=6; 如果先买物品A再买物品B的话我至少需要10元钱,也就是money >= p1+q2,如果先买物品B再买物品A的话,我们至少需要13元钱,也就是money >= p2+q1。得到相同的价值的物品,我们却需要两个不同价值的钱,当然我们选择要花少的钱购买相同价值的商品了!
    所以应使p1+q2 < p2+q1,交换位置p1-q1 < p2 - q2

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    
    struct Node{
    	int p,q,v;
    };
    
    bool cmp(Node x,Node y)
    {
    	return (x.q - x.p) < (y.q - y.p);
    }
    
    
    int main()
    {
    	int N,M;
    	while (~scanf("%d%d",&N,&M))
    	{
    		Node node[505];
    		int dp[5005];
    		memset(dp,0,sizeof(dp));
    		memset(node,0,sizeof(node));
    		for (int i = 0;i < N;i++)
    		{
    			scanf("%d%d%d",&node[i].p,&node[i].q,&node[i].v);
    		}
    		sort(node,node+N,cmp);
    		for(int i = 0;i < N;i++)
    		{
    			for (int j = M;j >= node[i].q;j--)
    			{
    				dp[j] = max(dp[j-node[i].p] + node[i].v,dp[j]);
    			}
    		}
    		printf("%d
    ",dp[M]);
    	}
    	return 0;
    }
    
  • 相关阅读:
    hdu5269 ZYB loves Xor I
    UVA 11181 Probability|Given
    UVA 10277 Boastin' Red Socks
    CodeForces 566B Replicating Processes
    UVA 10714 Ants
    CodeForces 567B Berland National Library hdu-5477 A Sweet Journey
    UVA 10759 Dice Throwing
    UVA 11027
    「CF241E」Flights
    「CF891C」Envy
  • 原文地址:https://www.cnblogs.com/ZhaoxiCheung/p/5719879.html
Copyright © 2011-2022 走看看