Coderfroces 864 E. Fire(01背包+路径标记)

本文介绍了一个基于01背包改进的问题——Codeforces E.Fire的解决方案。该问题涉及物品的价值评估、燃烧时间和救援时间等参数,目标是在限定时间内最大化所救物品的总价值。文章详细解释了解题思路,并提供了完整的C++代码实现。
摘要由CSDN通过智能技术生成

Polycarp is in really serious trouble — his house is on fire! It's time to save the most valuable items. Polycarp estimated that it would take ti seconds to save i-th item. In addition, for each item, he estimated the value of di — the moment after which the item i will be completely burned and will no longer be valuable for him at all. In particular, if ti ≥ di, then i-th item cannot be saved.

Given the values pi for each of the items, find a set of items that Polycarp can save such that the total value of this items is maximum possible. Polycarp saves the items one after another. For example, if he takes item a first, and then item b, then the item a will be saved in ta seconds, and the item b — in ta + tb seconds after fire started.

Input

The first line contains a single integer n (1 ≤ n ≤ 100) — the number of items in Polycarp's house.

Each of the following n lines contains three integers ti, di, pi (1 ≤ ti ≤ 20, 1 ≤ di ≤ 2 000, 1 ≤ pi ≤ 20) — the time needed to save the item i, the time after which the item i will burn completely and the value of item i.

Output

In the first line print the maximum possible total value of the set of saved items. In the second line print one integer m — the number of items in the desired set. In the third line print m distinct integers — numbers of the saved items in the order Polycarp saves them. Items are 1-indexed in the same order in which they appear in the input. If there are several answers, print any of them.

Examples
Input
3
3 7 4
2 6 5
3 7 6
Output
11
2
2 3
Input
2
5 6 1
3 3 5
Output
1
1
1
Note

In the first example Polycarp will have time to save any two items, but in order to maximize the total value of the saved items, he must save the second and the third item. For example, he can firstly save the third item in 3 seconds, and then save the second item in another 2 seconds. Thus, the total value of the saved items will be 6 + 5 = 11.

In the second example Polycarp can save only the first item, since even if he immediately starts saving the second item, he can save it in 3 seconds, but this item will already be completely burned by this time.

01背包多了一个控制条件,还有题目要求打印任意一种,但必须按照顺序(不是字典序),因此需要对d排序了。

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <vector>
#include <queue>
#include <stack>
#include <cstdlib>
#include <iomanip>
#include <cmath>
#include <cassert>
#include <ctime>
#include <cstdlib>
#include <map>
#include <set>
using namespace std;
#pragma comment(linker, "/sTACK:1024000000,1024000000")
#define lowbit(x) (x&(-x))
#define max(x,y) (x>=y?x:y)
#define min(x,y) (x<=y?x:y)
#define MAX 100000000000000000
#define MOD 1000000007
#define pi acos(-1.0)
#define ei exp(1)
#define PI 3.1415926535897932384626433832
#define ios() ios::sync_with_stdio(true)
#define INF 1044266558
#define mem(a) (memset(a,0,sizeof(a)))
struct point
{
    int t;
    int d;
    int p;
    int id;
    friend bool operator<(const point &a,const point &b)
    {
        return a.d<b.d;
    }
}e[110];
int n,x,y,z,k=0;
int dp[2005];
int path[105][2005];
int vis[102];
int main()
{
    scanf("%d",&n);
    int pos=0;
    for(int i=1;i<=n;i++)
    {
        scanf("%d%d%d",&x,&y,&z);
        if(x>=y) continue;
        e[++k].t=x;
        e[k].d=y;
        e[k].p=z;
        e[k].id=i;
        pos=max(pos,y);
    }
    sort(e+1,e+k+1);
    memset(dp,0,sizeof(dp));
    memset(path,0,sizeof(path));
    for(int i=1;i<=k;i++)
    {
        for(int j=e[i].d-1;j>=e[i].t;j--)
        {
            if(dp[j]<(dp[j-e[i].t]+e[i].p))//中间变量注意边界。
            {
                dp[j]=dp[j-e[i].t]+e[i].p;
                path[i][j]=1;
            }
        }
    }
    int ans=-1,cnt=0;
    for(int i=0;i<=pos;i++)
    {
        ans=max(ans,dp[i]);
    }
    for(int j=pos;j>=0;j--)
    {
        if(dp[j]==ans)
        {
            for(int i=k,s=j;i>=1 && s>=0;i--)
            {
                if(path[i][s])
                {
                    vis[cnt++]=e[i].id;
                    s-=e[i].t;
                }
            }
            break;
        }
    }
    reverse(vis,vis+cnt);
    printf("%d\n%d\n",ans,cnt);
    for(int i=0;i<cnt;i++)
    {
        if(i) printf(" ");
        printf("%d",vis[i]);
    }
    return 0;
}

 

转载于:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/7616781.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值