Input The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
Each test case start with a positive integer N(1<=N<=15) which indicate the number of homework. Then N lines follow. Each line contains a string S(the subject's name, each string will at most has 100 characters) and two integers D(the deadline of the subject), C(how many days will it take Ignatius to finish this subject's homework).
Note: All the subject names are given in the alphabet increasing order. So you may process the problem much easier.
Output For each test case, you should output the smallest total reduced score, then give out the order of the subjects, one subject in a line. If there are more than one orders, you should output the alphabet smallest one.
Sample Input
2 3 Computer 3 3 English 20 1 Math 3 2 3 Computer 3 3 English 6 3 Math 6 3
Sample Output
2 Computer Math English 3 Computer English Math
dp问题
#includeusing namespace std; #include #include struct Q{ string s; int d; int c; }; struct DPT{ int time; int pos; int last; int score; }; DPT *dp; Q *q; int main() { freopen("C:\\in.txt","r",stdin); int T; const int INF=0x7fffffff; cin>>T; while(T--){ int N; cin>>N; q=new Q[N]; dp=new DPT[1< >q[i].s>>q[i].d>>q[i].c; } int end=1< =0;i--){ recent=1< path; recent=end-1; while(recent){ //cout<