CSG-CPC
Online Judge

1013: 湖南省第十七届大学生计算机程序设计竞赛(HNCPC2021) - Semilive

Start Time:2021-12-05 18:00:00   End Time:2021-12-05 23:00:00   Current Time:2025-05-12 02:59:51   Public    Ended

H (1164) : Circle Intersection

         Time Limit: 1 Sec     Memory Limit: 128 MB     Submitted: 4     Solved: 0     SpecialJudge

Description

Calculate the length of the intersection of two circles in 3D space.

Input

There are no more than 10000 test cases. For each test case two lines of integer numbers are given, describing the two circles in 3D space respectively.

A circle in 3D space is described by 7 integer numbers – its radius r and two 3D coordinates. The first coordinate (x1, y1, z1) is its center, while the second (x2, y2, z2) represents the normal vector of the plane where the circle lies.

It is guaranteed that the two circles given are not parallel or coplanar.

1 ≤ r ≤ 10000, all the other input integers are in range [−10000,10000].

Output

Each case one line, the lengh of the intersection. The error between the result and the answer should not exceed 10−5.

Sample

1 0 0 0 0 0 1
1 1 1 0 1 1 0
1 0 0 0 0 0 1
2 1 0 0 1 1 1
0
1.414214

Hint