早教吧 育儿知识 作业答案 考试题库 百科 知识分享

一道acm题,ProblemH:Groups(I)TimeLimit:1000MSMemoryLimit:65536KTotalSubmit:93Accepted:31DescriptionTherearenpeopleintheclassandpersonpihashisvaluevi.Now,we'dliketoputthemintodifferentgroups.Ineachgroup,theremust

题目详情
一道acm题,
Problem H:Groups (I)
Time Limit:1000MS Memory Limit:65536K
Total Submit:93 Accepted:31
Description
  There are n people in the class and
person pi has his value vi.Now,we'd like to put them into different groups.In
each group,there must be two people,and the value of this group is equal to
the minimum of two member's values.For example,if pi and pj are in the same
group,the value of their group is min(pi,pj).Now,your task is to tell the
maximum and minimum of the sum of all groups.
Input
  There are several test cases.
  In
each case,there is an even integer n(n
▼优质解答
答案和解析
个人感觉,可以先排序.那么最大的情况就是相邻两个组成一个pair,最小的情况就是首尾组成一个pair.例如,input:1 2 3 4 5 6 7 8 9 10.最大的情况就是(1 2)(3 4)(5 6)(7 8)(9 10),最小的情况就是(1 10)(2 9)(3 8)(4 7)(5 6).当然,最小的情况还有很多种排法,只要保证是最小的5个数输出就行,例如(1 6)(2 7)(3 8)(4 9)(5 10)也是可以的