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

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
%d
",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