#Lutece0230. Segments

Segments

Migrated from Lutece 230 Segments

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

There are some segments on the plane, we assume there 44 possible position concepts for every 22 segments: no common point, countless common points, one common point and the point is also the endpoint of either segment, one common point but the point is not the endpoint of either segment.

Input

The first line of the input is an integer TT, which represents that there are TT test cases.

An integer nn indicating the number of segments

nn line follows, 44 integers per line, x1,y1,x2,y2x_1, y_1, x_2, y_2, representing the coordinates of the endpoints of both segments .(1n100)(1 \leq n \leq 100)

Output

For each test case, please output 44 line, 11 integer per line

For the first line, please output the number of pairs of segments that have no common point

For the second line, please output the number of pairs of segments that have countless common point

For the third line, please output the number of pairs of segments that have 11 common point and the point is also the endpoint of either segment

For the fourth line, please output the number of pairs of segments that have 11 common point and the point is not the endpoint.

After each case output a blank line include the last case.

Samples

2
3
-1 0 1 0
0 -1 0 1
-1 2 1 2
3
1 0 3 0
2 0 4 0
4 0 5 0
2
0
0
1

1
1
1
0

Resources

第四届北京邮电大学程序设计竞赛决赛