https://codeforces.com/problemset/problem/864/E

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.

/*
*@Author:   STZG
*@Language: C++
*/
//#include <bits/stdc++.h>
#include<iostream>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<string>
#include<vector>
#include<bitset>
#include<queue>
#include<deque>
#include<stack>
#include<cmath>
#include<list>
#include<map>
#include<set>
//#define DEBUG

using namespace std;
typedef long long ll;
const int N=100+10;
const double PI = acos(-1.0);
const double EXP = 1E-8;
const int INF = 0x3f3f3f3f;
int t,n,m;
int dp[N*20];
bool path[N][N*20];
struct node {
    int id,t,d,p;
    bool operator < (const node & S)const{
        return d<S.d;
    }
}e[N];
int main()
{
#ifdef DEBUG
	freopen("input.in", "r", stdin);
	//freopen("output.out", "w", stdout);
#endif
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        e[i].id=i;
        scanf("%d%d%d",&e[i].t,&e[i].d,&e[i].p);
    }
    sort(e+1,e+n+1);
    int maxx=0,maxj=1;
    for(int i=e[1].t; i<min(2000,e[1].d); i++)
        path[0][i] = 1;

    for(int i=1;i<=n;i++){
        for(int j=e[i].d-1;j>=e[i].t;j--){
            if(dp[j-e[i].t]+e[i].p>dp[j]){
                    path[i][j] = true;
                    dp[j] = dp[j-e[i].t]+e[i].p;
            }
            if(dp[j]>=maxx){
                maxx = dp[j];
                maxj = j;
            }
        }
    }
    vector<int> ans;
    for(int i=n,j=maxj; i>0; i--){
        if(path[i][j]){
            ans.push_back(i);
            j-=e[i].t;
        }
    }
    cout<<maxx<<endl;
    cout<<ans.size()<<endl;
    int len = ans.size();
    for(int i=len-1; i>=0; i--)
        cout<<e[ans[i]].id<<(i!=0?" ":"\n");
    //cout << "Hello world!" << endl;
    return 0;
}