308292: CF1495A. Diamond Miner

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Diamond Miner

题意翻译

[题目链接](https://codeforces.com/problemset/problem/1495/A) 在一个平面直角坐标系上,有 $n$ 个矮人与 $n$ 个钻石。保证所有矮人都在 $y$ 轴上,所有钻石都在 $x$ 轴上,且没有东西在原点 现在,每个矮人都需要去捡一个钻石。假设矮人和钻石的坐标分别为 $(x,y),(u,v)$,那么这个矮人去捡这个钻石所花费的体力就是 $\sqrt{(x-u)^2+(y-v)^2}$(也就是两点间的距离) 求一个钻石的分配方案,使得所有矮人花费的总体力最少,并输出这个最小值 ### 输入格式 **本题有多组数据** 第一行一个整数 $T$,表示数据的组数 对于每组数据: 第一行一个整数 $n$,表示矮人与钻石的个数 接下来 $2\cdot n$ 行,每行两个整数 $x,y$ 若 $x=0$ 则代表 $(0,y)$ 处有一个矿工 若 $y=0$,则代表 $(x,0)$ 出有一个钻石 ### 输出格式 对于每组数据,输出一行一个实数,表示最小的总体力花费 你需要保证与答案的相对误差 $<10^{-9}$ **说明与提示** $1 \le T \le 10$ $1\le n \le 10^5,\sum n\le 10^5$ $|x|,|y|\le 10^8$

题目描述

Diamond Miner is a game that is similar to Gold Miner, but there are $ n $ miners instead of $ 1 $ in this game. The mining area can be described as a plane. The $ n $ miners can be regarded as $ n $ points on the y-axis. There are $ n $ diamond mines in the mining area. We can regard them as $ n $ points on the x-axis. For some reason, no miners or diamond mines can be at the origin (point $ (0, 0) $ ). Every miner should mine exactly one diamond mine. Every miner has a hook, which can be used to mine a diamond mine. If a miner at the point $ (a,b) $ uses his hook to mine a diamond mine at the point $ (c,d) $ , he will spend $ \sqrt{(a-c)^2+(b-d)^2} $ energy to mine it (the distance between these points). The miners can't move or help each other. The object of this game is to minimize the sum of the energy that miners spend. Can you find this minimum?

输入输出格式

输入格式


The input consists of multiple test cases. The first line contains a single integer $ t $ ( $ 1\le t\le 10 $ ) — the number of test cases. The description of the test cases follows. The first line of each test case contains a single integer $ n $ ( $ 1 \le n \le 10^5 $ ) — the number of miners and mines. Each of the next $ 2n $ lines contains two space-separated integers $ x $ ( $ -10^8 \le x \le 10^8 $ ) and $ y $ ( $ -10^8 \le y \le 10^8 $ ), which represent the point $ (x,y) $ to describe a miner's or a diamond mine's position. Either $ x = 0 $ , meaning there is a miner at the point $ (0, y) $ , or $ y = 0 $ , meaning there is a diamond mine at the point $ (x, 0) $ . There can be multiple miners or diamond mines at the same point. It is guaranteed that no point is at the origin. It is guaranteed that the number of points on the x-axis is equal to $ n $ and the number of points on the y-axis is equal to $ n $ . It's guaranteed that the sum of $ n $ for all test cases does not exceed $ 10^5 $ .

输出格式


For each test case, print a single real number — the minimal sum of energy that should be spent. Your answer is considered correct if its absolute or relative error does not exceed $ 10^{-9} $ . Formally, let your answer be $ a $ , and the jury's answer be $ b $ . Your answer is accepted if and only if $ \frac{|a - b|}{\max{(1, |b|)}} \le 10^{-9} $ .

输入输出样例

输入样例 #1

3
2
0 1
1 0
0 -1
-2 0
4
1 0
3 0
-5 0
6 0
0 3
0 1
0 2
0 4
5
3 0
0 4
0 -3
4 0
2 0
1 0
-3 0
0 -10
0 -2
0 -10

输出样例 #1

3.650281539872885
18.061819283610362
32.052255376143336

说明

In the first test case, the miners are at $ (0,1) $ and $ (0,-1) $ , while the diamond mines are at $ (1,0) $ and $ (-2,0) $ . If you arrange the miners to get the diamond mines in the way, shown in the picture, you can get the sum of the energy $ \sqrt2 + \sqrt5 $ . ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1495A/31080987eae3692ada5a561d15c4198109116c6a.png)

Input

题意翻译

[题目链接](https://codeforces.com/problemset/problem/1495/A) 在一个平面直角坐标系上,有 $n$ 个矮人与 $n$ 个钻石。保证所有矮人都在 $y$ 轴上,所有钻石都在 $x$ 轴上,且没有东西在原点 现在,每个矮人都需要去捡一个钻石。假设矮人和钻石的坐标分别为 $(x,y),(u,v)$,那么这个矮人去捡这个钻石所花费的体力就是 $\sqrt{(x-u)^2+(y-v)^2}$(也就是两点间的距离) 求一个钻石的分配方案,使得所有矮人花费的总体力最少,并输出这个最小值 ### 输入格式 **本题有多组数据** 第一行一个整数 $T$,表示数据的组数 对于每组数据: 第一行一个整数 $n$,表示矮人与钻石的个数 接下来 $2\cdot n$ 行,每行两个整数 $x,y$ 若 $x=0$ 则代表 $(0,y)$ 处有一个矿工 若 $y=0$,则代表 $(x,0)$ 出有一个钻石 ### 输出格式 对于每组数据,输出一行一个实数,表示最小的总体力花费 你需要保证与答案的相对误差 $<10^{-9}$ **说明与提示** $1 \le T \le 10$ $1\le n \le 10^5,\sum n\le 10^5$ $|x|,|y|\le 10^8$

加入题单

上一题 下一题 算法标签: