1611. Fall with Trees

Fall wants to draw a perfect binary tree.

We first stipulate that all nodes in the tree with the same depth also have the same y-coordinate in the plane. Define nodes with the same depth to be nodes at the same level, then the perfect binary tree has four properties.

  • It is a full binary tree.
  • The difference between the y-coordinates of two nodes at each adjacent level is a constant.
  • The difference between the x-coordinates of two adjacent nodes at the same level is constant.
  • The x-coordinate of each node is the average of the x-coordinates of its sons.

Fall has drawn the root node and its left and right sons of this binary tree. Now Fall intends to draw a total of k levels and cut the binary tree down and paste it on the wall afterwards, so he wants to know what is the area of the convex hull of all nodes of this perfect binary tree.

输入

The input consists of multiple test cases.

The first line contains an integer T (T\le2\times10^5) -- the number of test cases.

For each test case:

In the first line, there is an integer k (2\le k\le10^4) .

In the second line, there are six integers $x{root},y{root},x{lson},y{lson},x{rson},y{rson}\in[−10^4,10^4]$ ,which represent the coordinates of the root node and its sons.

It is guaranteed that all the coordinates meet the conditions of the question, which means:

  • $x{lson}+x{rson}=2\times x_{root}$
  • $y{lson}=y{rson}$
  • $y{root} > y{lson},x{lson} < x{rson}$

输出

For each test case, output a real number representing the answer, with three decimal places.

样例

标准输入 复制文本
3
3
0 0 -2 -2 2 -2
4
0 0 -4 -2 4 -2
10000
0 0 -10000 -10000 10000 -10000
标准输出 复制文本
14.000
54.000
3999000000000.000

提示

Here's the picture of the perfect binary tree for the first example, whose area is $S{ABC}+S{BCGD}=14$

出处:2021“MINIEYE杯”中国大学生算法设计超级联赛(7)1003

注:不保证数据与原题一致

[23/11/05] 数据已修复。不自动重判,你可以重新提交代码。

登录以提交代码。
单点时限 1 秒
内存限制 128 MB
提交 67
通过 23