做了几次,都是wrong  answer!无奈,希望各位大虾出手赐教!
最好给个C语言的代码,谢谢。。。

Review of Programming Contest Rules
    
The ACM ICPC's rule of scoring is as the following:
A problem is solved when it is accepted by the judges.  Teams are ranked according to the most problems solved.  For the purposes of awards, or in determining qualifier(s) for the World Finals, teams who solve the same number of problems are ranked by least total time.  The total time is the sum of the time consumed for each problem solved.  The time consumed for a solved problem is the time elapsed from the beginning of the contest to the submittal of the accepted run plus 20 penalty minutes for every rejected run for that problem regardless of submittal time.  There is no time consumed for a problem that is not solved.
For example, if one has the following contest record:
At the 100th minute submitted problem A, rejected;
At the 140th minute submitted problem B, rejected;
At the 150th minute submitted problem B, accepted;
At the 160th minute submitted problem C, accepted.
Then his total time = (150+20) + 160 = 330.  Notice that it took him only 10 minutes to finish problem C.  Assume that he spent 40 minutes on reading all the problems through, then if he could do problem C first and problem A last, his contest record might look like:
At the 50th minute submitted problem C, accepted;
At the 90th minute submitted problem B, rejected;
At the 100th minute submitted problem B, accepted;
At the 160th minute submitted problem A, rejected.
Then his total time would be 50 + (100+20) = 170.  Hence the order of solving the problems will affect one's final rank.
Now suppose that you are in a one-person team.  It will take you t(0) minutes to read all the problems through.  Judging by your experience, you may estimate the minutes t(i) that you will take to solve problem i.  And more, the earlier you get one problem done, the more unlikely that you will make mistakes on programming.  Assume that if a solution is first time submitted in the first hour (60 minutes inclusive), it will get accepted at once; if it is first time submitted in the second hour, it will be rejected once; if it is first time submitted in the third hour, it will be rejected twice; etc.  You may also estimate the minutes d(i) for debugging problem i every time it is rejected.  For the sake of simplicity, let us assume that d(i) is fixed for each problem i, and once you start working on a problem, you will keep submitting until it is accepted.
Your task is to write a program to find yourself the order of solving the problems which gives you the best chance of winning the contest.
Input Specification:
Your program must read test cases from a file “input.txt”.  The input file consists of several test cases.  For each test case:
The 1st line contains 3 integers: the total number of contest hours H (0 < H <= 5), the total number of problems N (0 < N <= 9), and the time t0 (minutes) for you to read through all the problems at the beginning of the contest.  The following N lines each contains a problem's name and a pair of positive integers t(i) and d(i).  A problem's name is a string of no more than 20 characters without any space.  A negative H signals the end of input.
Output Specification:
For each test case, you are supposed to print to a file “output.txt” the total time in a line in the format shown by the sample.  Then print the names of the problems you will solve in the correct order, each name in a line.  If there are several solutions, you must output the smallest sequence.  A sequence of problems{ i1, i2, ... in } is smaller than another sequence { j1, j2, ..., jn } means that there exists an integer K between 1 and n such that for every 1 <= k < K, we have ik = jk, and iK < jK.
There must be a blank line between two test cases, but no extra lines at the end of output.
Sample Input:
2 3 40
A 60 10
B 40 10
C 10 20
2 3 40
Try_This_One 20 5
And_This_One 20 5
Then_This_One 20 5
-1
Sample Output:
Total Time = 170
C
B

Total Time = 295
Try_This_One
And_This_One
Then_This_One