编程介的小学生 2017-09-23 09:43 采纳率: 20.5%
浏览 672
已采纳

merge

Problem Description
There are N number,they are respectively from 1 to N.

for a set of numbers, we set a problem as flow:

we assume that the initial position of each number is the corresponding positon on number axis.

Then what we have to do is to make the minimum and maximum number of meet in minimum time.

We can operate these numbers as flow:

Each operation, we can select two adjacent numbers on the number axis and exchange them.multiple operations can be performed at the same time.

the time it spend is the distance between two position.

When the minimum and maximum number went to the adjacent positions,the time of they meet is distance/2.

Here is an example:

1..4......11....16..19

We want 1 and 19 meet.

Let 1,4 and 16,19 exchange, they can be performed at the same time and end at the same time.It spend 3 units time,and becomes the following:

4..1......11....19..16

Then there are two Plan:

A Plan:

let 1 and 11 exchange with 7 units time first.And it becomes the following:

4..11......1....19..16

Then exchange 1 and 19 with 2.5 units time.

the total times is:3+7+2.5=12.5

Plan B:

Let 11 and 19 exchange with 5 units time first.it becomes the following:

4..1......19....11..16

let 1 and 19 exchanged with a time of 3.5 units.

total:3+5+3.5=11.5

Clearly, B Plan work better.

Now everyone seems to understand the meaning of the problem.

So the question now is like the following

at the beginning, there are N sets, the i-th set contains and contains only i.

Then N-1 operations flow:

Merge two set.

And you should calculate the minimum time of making the biggest and smallest number meet after merging in this set.

Input
The first line contains a number T(T<=5), indicating T cases of data.

for each case of data:

The first line contains a number N.

Then N-1 lines flow,

each line contains two different integers u, v.

they Represents we merge two set where u and v are.

we promise that u and v are not at the same set.

  • 1≤N≤300000

Output
for each case of data:
for each line, output the minimum time after merging, accurated to 0.1.

Sample Input
1
3
1 2
1 3

Sample Output
0.5
1.5

  • 写回答

1条回答 默认 最新

  • threenewbee 2017-10-11 02:52
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序