zoukankan      html  css  js  c++  java
  • hdu3466 Proud Merchants

    Problem 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 Input
    2 10 10 15 10 5 10 5 3 10 5 10 5 3 5 6 2 7 3
     

    Sample Output
    5

    11

    这题比较难想,想了很久看别人题解做出来了。这题关键是要理解怎么安排加入背包的物品的顺序,才能使后面加入的物品不影响前面已经加入的物品。我发现每一次进行循环的时候,都是从qi开始循环的,而且要用到qi-pi及其后的数,那么为了不使后面的物品影响前面的,要保证qi-pi是递增的,这样后面的就不会与前面冲突,可以仔细想想:).

    #include<stdio.h>
    #include<string.h>
    #include<algorithm>
    using namespace std;
    struct node{
    	int p,q,v,cha;
    }a[600];
    int f[6000];
    
    bool cmp(node a,node b){
    	return a.cha<b.cha;
    }
    int max(int a,int b){
    	return a>b?a:b;
    }
    
    int main()
    {
    	int n,m,i,j;
    	while(scanf("%d%d",&n,&m)!=EOF)
    	{
    		memset(a,0,sizeof(a));
    		memset(f,0,sizeof(f));
    		for(i=1;i<=n;i++){
    			scanf("%d%d%d",&a[i].p,&a[i].q,&a[i].v);
    			a[i].cha=a[i].q-a[i].p;
    		}
    		sort(a+1,a+1+n,cmp);
    		for(i=1;i<=n;i++){
    			for(j=m;j>=a[i].p;j--){
    				if(j>=a[i].q){
    					f[j]=max(f[j],f[j-a[i].p]+a[i].v);
    				}
    			}
    		}
    		printf("%d
    ",f[m]);
    	}
    	return 0;
    }



  • 相关阅读:
    poj3032
    poj2603
    poj2019
    poj2369
    AVI 录像功能压缩算法设置
    陆其明的新书《脚本驱动的应用软件开发方法与实践》
    c# 动态编译
    !!!分享:把bmp格式的图片转化为AVI格式的视频操作的封装类其中对于AVI API的函数的使用较为完整
    视频文件格式和视频编码方式
    activex 控件的id 定义位置+使用ocx控件的客户端程序中对控件定义的文件中控件id定义的位置
  • 原文地址:https://www.cnblogs.com/herumw/p/9464732.html
Copyright © 2011-2022 走看看