0
点赞
收藏
分享

微信扫一扫

HDU - 5501 The Highest Mark 贪心+01背包

guanguans 2023-02-07 阅读 33


The Highest Mark

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 1322    Accepted Submission(s): 564


 

Problem Description

The SDOI in 2045 is far from what it was been 30 years ago. Each competition has t minutes and n problems.

The ith problem with the original mark of Ai(Ai≤106),and it decreases Bi by each minute. It is guaranteed that it does not go to minus when the competition ends. For example someone solves the ith problem after x minutes of the competition beginning. He/She will get Ai−Bi∗x marks.

If someone solves a problem on x minute. He/She will begin to solve the next problem on x+1 minute.

dxy who attend this competition with excellent strength, can measure the time of solving each problem exactly.He will spend Ci(Ci≤t) minutes to solve the ith problem. It is because he is so godlike that he can solve every problem of this competition. But to the limitation of time, it's probable he cannot solve every problem in this competition. He wanted to arrange the order of solving problems to get the highest mark in this competition.

 

 

Input

There is an positive integer T(T≤10) in the first line for the number of testcases.(the number of testcases with n>200 is no more than 5)

For each testcase, there are two integers in the first line n(1≤n≤1000) and t(1≤t≤3000) for the number of problems and the time limitation of this competition.

There are n lines followed and three positive integers each line Ai,Bi,Ci. For the original mark,the mark decreasing per minute and the time dxy of solving this problem will spend.


Hint:
First to solve problem 2 and then solve problem 1 he will get 88 marks. Higher than any other order.

 

 

Output

For each testcase output a line for an integer, for the highest mark dxy will get in this competition.

 

 

Sample Input


 


1 4 10 110 5 9 30 2 1 80 4 8 50 3 2

 

 

Sample Output


 


88

 

 

Source

​​BestCoder Round #59 (div.1)​​

 

 

Recommend

hujie

 题意:n道题,时间为t,每一道题的原本A分,分数按照才开考到做完该题的时间t会变成A-B*t,首先看出背包,但是会发现,每个物品取的顺序是会影响结果的,我们可以看出做题顺序至关重要,所以列举一下,来自

 

 

#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <cstring>
#define N 2000010
#define ll long long
using namespace std;
ll dp[N];
int n,m;
struct node
{
ll a,b,c;
}x[N];
bool cmp(node x,node y)
{
return x.b*y.c>y.b*x.c;
}
int main()
{
int t;
cin>>t;
while(t--)
{

scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
{
scanf("%lld%lld%lld",&x[i].a,&x[i].b,&x[i].c);
}
sort(x+1,x+n+1,cmp);
memset(dp,0,sizeof(dp));
dp[0]=0;
for(int i=1;i<=n;i++)
{
for(int j=m;j>=x[i].c;j--)
{
dp[j]=max(dp[j],dp[j-x[i].c]+x[i].a-j*x[i].b);
}
}
ll maxx=0;
for(int i=0;i<=m;i++)
{

maxx=max(dp[i],maxx);
}
cout<<maxx<<endl;
}
return 0;
}

 

举报

相关推荐

0 条评论