Dotcpp  >  编程题库  >  Tetrahedrons and Spheres
题目 1082:

Tetrahedrons and Spheres

时间限制: 2s 内存限制: 192MB 提交: 234 解决: 59

题目描述

There are a tetrahedrons and b spheres in the 3D-splace, you’re asked to calculate the volume occupied by at least one of them (i.e. volume of the union of the objects).

输入格式

There will be at most 20 test cases. Each case begins with two integers ab, the number of tetrahedrons and the number of spheres (1<=a,b<=5). The next lines each contains 12 integers: x1, y1, z1, x2, y2, z2,x3, y3, z3, x4, y4, z4, the coordinates (xi, yi, zi)(1<=i<=4) of the four vertices  of a tetrahedron. The next blines each contains 4 integers x, y, z, r, the coordinates of the center (x, y, z) and the radius r (r<=3). All the coordinate values are integers with absolute values no more than 5. The input is terminated by a=b=0.

输出格式

 For each test case, print a single line, the volume occupied by at least one of them, rounded to three decimal points.

 

样例输入

1 1
0 0 4 1 0 4 0 1 4 0 0 5
0 0 0 1
0 0

样例输出

4.356

提示

零基础同学可以先学习视频课程,包含C/C++、Python、百练、蓝桥杯辅导、算法数据结构等课程,提供视频讲解以及配套习题,还有老师答疑,点击这里了解课程详情
标签