408147: GYM102994 L Landlord

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

L. Landlordtime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output

Calabash is the servant of a landlord. The landlord owns a piece of land, which can be regarded as an infinite 2D plane.

One day the landlord set up two orthogonal rectangular-shaped fences on his land. He asked Calabash a simple problem: how many nonempty connected components is my land divided into by these two fences, both finite and infinite? Calabash couldn't answer this simple question. Please help him!

Recall that a connected component is a maximal set of points not occupied by the fences, and every two points in the set are reachable without crossing the fence.

Input

The first line of input consists of a single integer $$$T$$$ $$$(1 \leq T \leq 10000)$$$, the number of test cases.

Each test case contains two lines, specifying the two rectangles. Each line contains four integers $$$x_1, y_1, x_2, y_2$$$ $$$(0 \leq x_1, y_1, x_2, y_2 \leq 10^9, x_1 < x_2, y_1 < y_2)$$$, where $$$(x_1, y_1), (x_2, y_2)$$$ are the Cartesian coordinates of two opposite vertices of the rectangular fence. The edges of the rectangles are parallel to the coordinate axes. The edges of the two rectangles may intersect, overlap, or even coincide.

Output

For each test case, print the answer as an integer in one line.

ExampleInput
3
0 0 1 1
2 2 3 4
1 0 3 2
0 1 2 3
0 0 1 1
0 0 1 1
Output
3
4
2

加入题单

算法标签: