Cake
Time Limit: 4 Seconds
Memory Limit: 65536 KB
Alice and Bob like eating cake very much. One day, Alice and Bob went to a bakery and bought many cakes.
Now we know that they have bought n
Alice and Bob do n
Now Alice want to know the maximum sum of the value that she can get.
Input
The first line is an integer T
For each test case, the first line is an integer n (1<=n<=800). Note that n
In following n lines, each line contains two integers a[i] and b[i], where a[i] is the value of ith cake that Alice evaluates, and b[i] is the value of ith cake that Bob evaluates. (1<=a[i], b[i]<=1000000)
Note that a[1], a[2]..., a[n] are n distinct integers and b[1], b[2]..., b[n] are n
Output
For each test case, you need to output the maximum sum of the value that Alice can get in a line.
Sample Input
1 6 1 6 7 10 6 11 12 18 15 5 2 14
Sample Output
28
先按b从大到小排序,然后像做背包一样搞就好了