UVA-10026 - Shoemaker’s problem

  • UVa Online Judge 解題結果請於 Submit 後,參閱 uHunt
  • 如果你有任何建議與指教,歡迎於下方留言一起討論喔!

題意概要

鞋匠一次只能選一個工作做,以 Sample Input 為例,如果先選第一件工作,則需要完成的時間為 3 天,而這 天也就無法做其他工作,因此對於其他工作而言,就要負擔罰金 元,故本題需要找出「罰金最小」的工作的次序。


Input

The input begins with a single positive integer on a line by itself indicating the number of the cases following, each of them as described below. This line is followed by a blank line, and there is also a blank line between two consecutive inputs. First line of input contains an integer (). The next $$N4 lines each contain two numbers: the time and fine of each task in order.


Output

For each test case, the output must follow the description below. The outputs of two consecutive cases will be separated by a blank line. You programm should print the sequence of jobs with minimal fine. Each job should be represented by its number in input. All integers should be placed on only one output line and separated by one space. If multiple solutions are possible, print the first lexicographically.


Sample Input

1
4
3 4
1 1000
2 2
5 5

Sample Output

2 1 3 4
profile-image
David Lu
Hello, I'm David Lu. I am a graduate student in Department of Computer Science at National Chiao Tung University, Taiwan. I am in the Networking and Sensing Systems (NSS) Lab at NCTU. If you have any question, please feel free to contact with me.
comments powered by Disqus