|
||||||||||
Special TetrahedronTime Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1114 Accepted Submission(s): 459 Problem Description Given $n$ points which are in three-dimensional space(without repetition). Please find out how many distinct Special Tetrahedron among them. A tetrahedron is called Special Tetrahedron if it has two following characters. 1. At least four edges have the same length. 2. If it has exactly four edges of the same length, the other two edges are not adjacent. Input Intput contains multiple test cases. The first line is an integer $T, 1 \leq T \leq 20$, the number of test cases. Each case begins with an integer $n(n \leq 200)$, indicating the number of the points. The next $n$ lines contains three integers $x_i,y_i,z_i$, $(-2000 \leq x_i,y_i,z_i \leq 2000)$, representing the coordinates of the ith point. Output For each test case,output a line which contains"Case #x: y",x represents the xth test(starting from one),y is the number of Special Tetrahedron. Sample Input
Sample Output
Author UESTC Source | ||||||||||
|