#Lutece0097. Cracked Tiles

Cracked Tiles

Migrated from Lutece 97 Cracked Tiles

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

A big hall is paved with square tiles of unit side length (which means it is 1×11 \times 1 in size). Tragedy happened when a careless porter passed through the hall. The heavy box he carried happened to fall down on the floor,and some tiles are cracked. Undoubtedly some tiles must be replaced, but the question came that how many tiles were cracked in the accident.

For convenience, we build a norml Cartesian coordinate system, and we assume that the bottom of the box is a rectangle with all its vertices on the lattice point (that is to say both of its xx and yy coordinate are integers). A tile is cracked if and only if the the rectangle has a positive intersection with it.

Input

One integer TT on the first line indicates the number of cases.

Then followed by TT cases, one line for each case.

Each line with 44 pairs of integers (xi,yix_i, y_i) describe 44 vertices (in counter-clockwise order) of the rectangle mentioned above. (0xi,yi100000 \leq x_i, y_i \leq 10000)

Output

For each case, print one line with the number of cracked tiles.

Samples

2
0 0 5 0 5 3 0 3
1 0 3 2 2 3 0 1
15
7

Resources

The 8th UESTC Programming Contest Preliminary