QOJ.ac

QOJ

Time Limit: 4 s Memory Limit: 256 MB Total points: 100
[0]

# 2853. Paint by Rectangles

Statistics

After her previous artwork was met with critical acclaim, Bessie was offered a job designing painting sets. She designs these paintings by choosing 1N105 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 T:

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

Note: the time limit for this problem is 4s, twice the default.

Input Format

The first line contains N and T.

The next N lines each contain the description of a rectangle in the form (x1,y1),(x2,y2) where 1x1<x22N and 1y1<y22N. (x1,y1) and (x2,y2) are the bottom left and top right corners of the rectangle respectively.

It is guaranteed that all the xi form a permutation of 12N, and the same holds for all the yi.

Output Format

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

Sample Input 1

2 1
1 1 3 3
2 2 4 4

Sample Output 1

4

There are two white regions and two black regions, for a total of four regions. The boundaries of all rectangles are connected, so this input would satisfy the conditions of subtask 3.

problem_2853_1.png

Sample Input 2

5 2
1 5 3 6
5 4 7 9
4 1 8 3
9 8 10 10
2 2 6 7

Sample Output 2

4 5

The boundary of the rectangle in the upper-right is not connected to the rest of the boundaries, so this input would not satisfy the conditions of subtask 4.

problem_2853_2.png

Scoring

  1. Test cases 3-4 satisfy N103.
  2. In test cases 5-7, no two rectangle boundaries intersect.
  3. In test cases 8-10, T=1 and the boundaries of all rectangles are connected.
  4. In test cases 11-13, T=2 and the boundaries of all rectangles are connected.
  5. In test cases 14-18, T=1.
  6. In test cases 19-23, T=2.

Problem credits: Andi Qu