CF1080C.Masha and two friends

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Recently, Masha was presented with a chessboard with a height of nn and a width of mm .

The rows on the chessboard are numbered from 11 to nn from bottom to top. The columns are numbered from 11 to mm from left to right. Therefore, each cell can be specified with the coordinates (x,y)(x,y) , where xx is the column number, and yy is the row number (do not mix up).

Let us call a rectangle with coordinates (a,b,c,d)(a,b,c,d) a rectangle lower left point of which has coordinates (a,b)(a,b) , and the upper right one — (c,d)(c,d) .

The chessboard is painted black and white as follows:

An example of a chessboard.Masha was very happy with the gift and, therefore, invited her friends Maxim and Denis to show off. The guys decided to make her a treat — they bought her a can of white and a can of black paint, so that if the old board deteriorates, it can be repainted. When they came to Masha, something unpleasant happened: first, Maxim went over the threshold and spilled white paint on the rectangle (x1,y1,x2,y2)(x_1,y_1,x_2,y_2) . Then after him Denis spilled black paint on the rectangle (x3,y3,x4,y4)(x_3,y_3,x_4,y_4) .

To spill paint of color colorcolor onto a certain rectangle means that all the cells that belong to the given rectangle become colorcolor . The cell dyeing is superimposed on each other (if at first some cell is spilled with white paint and then with black one, then its color will be black).

Masha was shocked! She drove away from the guests and decided to find out how spoiled the gift was. For this, she needs to know the number of cells of white and black color. Help her find these numbers!

输入格式

The first line contains a single integer tt ( 1t1031 \le t \le 10^3 ) — the number of test cases.

Each of them is described in the following format:

The first line contains two integers nn and mm ( 1n,m1091 \le n,m \le 10^9 ) — the size of the board.

The second line contains four integers x1x_1 , y1y_1 , x2x_2 , y2y_2 ( 1x1x2m,1y1y2n1 \le x_1 \le x_2 \le m, 1 \le y_1 \le y_2 \le n ) — the coordinates of the rectangle, the white paint was spilled on.

The third line contains four integers x3x_3 , y3y_3 , x4x_4 , y4y_4 ( 1x3x4m,1y3y4n1 \le x_3 \le x_4 \le m, 1 \le y_3 \le y_4 \le n ) — the coordinates of the rectangle, the black paint was spilled on.

输出格式

Output tt lines, each of which contains two numbers — the number of white and black cells after spilling paint, respectively.

输入输出样例

  • 输入#1

    5
    2 2
    1 1 2 2
    1 1 2 2
    3 4
    2 2 3 2
    3 1 4 3
    1 5
    1 1 5 1
    3 1 5 1
    4 4
    1 1 4 2
    1 3 4 4
    3 4
    1 2 4 2
    2 1 3 3
    

    输出#1

    0 4
    3 9
    2 3
    8 8
    4 8
    

说明/提示

Explanation for examples:

The first picture of each illustration shows how the field looked before the dyes were spilled. The second picture of each illustration shows how the field looked after Maxim spoiled white dye (the rectangle on which the dye was spilled is highlighted with red). The third picture in each illustration shows how the field looked after Denis spoiled black dye (the rectangle on which the dye was spilled is highlighted with red).

In the first test, the paint on the field changed as follows:

In the second test, the paint on the field changed as follows:

In the third test, the paint on the field changed as follows:

In the fourth test, the paint on the field changed as follows:

In the fifth test, the paint on the field changed as follows:

首页