Paint by Rectangles

아직 제출이 없습니다시간 제한4초메모리 제한1024 MB

문제

After her previous artwork was met with critical acclaim, Bessie was offered a job designing painting sets. She designs these paintings by choosing 1N1051\le N\le 10^5 axis-aligned rectangles in the plane such that no two edges are collinear. The boundaries of these rectangles define the boundaries of the painting's colored regions.

Still being an avant-garde artist, Bessie decides that the painting should resemble a Holstein cow. More specifically, each region formed by the rectangles is colored either black or white, no two adjacent regions have the same color, and the region outside of all the rectangles is colored white.

After choosing the rectangles, Bessie would like you to output one of two things based on a parameter TT:

  • If T=1T=1, output the total number of regions.
  • If T=2T=2, output the number of white regions followed by the number of black regions.

입력

The first line contains NN and TT.

The next NN lines each contain the description of a rectangle in the form (x_1,y_1),(x_2,y_2)(x\_1,y\_1), (x\_2,y\_2) where 1x_1\<x_22N1\le x\_1\<x\_2\le 2N and 1y_1\<y_22N1\le y\_1\<y\_2\le 2N. (x_1,y_1)(x\_1, y\_1) and (x_2,y_2)(x\_2, y\_2) are the bottom left and top right corners of the rectangle respectively.

It is guaranteed that all the x_ix\_i form a permutation of 12N1\ldots 2N, and the same holds for all the y_iy\_i.

출력

A single integer if T=1T=1, otherwise two separated by spaces.