Pro.ID21979 TitlePie Title链接http://10.20.2.8/oj/exercise/problem?problem_id=21979 AC0 Submit0 Ratio- 时间&空间限制描述A lot of boys and girls come to our company to pie friends. After we get their information, we need give each of them an advice for help. We know everyone's height, and we believe that the less difference of a girl and a boy has, the better it is. We need to find as more matches as possible, but the total difference of the matches must be minimum. 输入The input consists of multiple test cases. The first line of each test case contains two integers, n, m ( 0 < n, m ≤ 10000 ), which are the number of boys and the number of girls. The next line contains n float numbers, indicating the height of each boy. The last line of each test case contains m float numbers, indicating the height of each girl. You can assume that |n – m| ≤ 100 because we believe that there is no need to do with that if |n – m| > 100. All of the values of the height are between 1.5 and 2.0. The last case is followed by a single line containing two zeros, which means the end of the input. 输出Description A lot of boys and girls come to our company to pie friends. After we get their information, we need give each of them an advice for help. We know everyone's height, and we believe that the less difference of a girl and a boy has, the better it is. We need to find as more matches as possible, but the total difference of the matches must be minimum. Input The input consists of multiple test cases. The first line of each test case contains two integers, n, m ( 0 < n, m ≤ 10000 ), which are the number of boys and the number of girls. The next line contains n float numbers, indicating the height of each boy. The last line of each test case contains m float numbers, indicating the height of each girl. You can assume that |n – m| ≤ 100 because we believe that there is no need to do with that if |n – m| > 100. All of the values of the height are between 1.5 and 2.0. The last case is followed by a single line containing two zeros, which means the end of the input. Output Output the minimum total difference of the height. Please take it with six fractional digits. Sample Input 2 3 Sample Output 0.000000 Source 样例输入2 3 样例输出0.000000 提示作者 |