码迷,mamicode.com
首页 > 其他好文 > 详细

垃圾陷阱

时间:2016-10-24 09:41:05      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:else   cst   als   ges   main   #include   陷阱   escape   bre   

#include<cstdio>
#include<algorithm>
using namespace std;
struct item
{
int t,h,f;
bool operator < (const item& x) const
{
return t<x.t;
}
};
int D,G,rest_time[100],ans,longest;
item junk[100];
bool escape=false;
/*_init()
{
item rest;
if(item.h<=item.h)
return 0
}*/
int main()
{
scanf("%d%d",&D,&G);
for(int i=0;i<G;i++)
scanf("%d%d%d",&junk[i].t,&junk[i].f,&junk[i].h);
sort(junk,junk+G);
rest_time[0]=10;
for(int i=0;i<G;i++)
{
for(int j=0;j<D;j++)
{
rest_time[j]-=junk[i].t;
if(i>0)
rest_time[j]+=junk[i-1].t;
}
for(int j=D-1;j>=0;j--)
if(rest_time[j]>=0)
{
if(j+junk[i].h<D)
rest_time[j+junk[i].h]=max(rest_time[j+junk[i].h],rest_time[j]);
else

{
escape=true;
ans=junk[i].t;
break;
}
rest_time[j]+=junk[i].f;

}
if(escape)
break;
}
printf("%d\n",escape?ans:junk[G-1].t+rest_time[0]);
return 0;
}

垃圾陷阱

标签:else   cst   als   ges   main   #include   陷阱   escape   bre   

原文地址:http://www.cnblogs.com/lutongxi/p/5991767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!