CF962G.Visible Black Areas

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Petya has a polygon consisting of nn vertices. All sides of the Petya's polygon are parallel to the coordinate axes, and each two adjacent sides of the Petya's polygon are perpendicular. It is guaranteed that the polygon is simple, that is, it doesn't have self-intersections and self-touches. All internal area of the polygon (borders are not included) was painted in black color by Petya.

Also, Petya has a rectangular window, defined by its coordinates, through which he looks at the polygon. A rectangular window can not be moved. The sides of the rectangular window are parallel to the coordinate axes.

Blue color represents the border of a polygon, red color is the Petya's window. The answer in this case is 2.Determine the number of black connected areas of Petya's polygon, which can be seen through the rectangular window.

输入格式

The first line contain four integers x1,y1,x2,y2x_1, y_1, x_2, y_2 ( x1<x2x_1 < x_2 , y2<y1y_2 < y_1 ) — the coordinates of top-left and bottom-right corners of the rectangular window.

The second line contains a single integer nn ( 4n150004 \le n \le 15\,000 ) — the number of vertices in Petya's polygon.

Each of the following nn lines contains two integers — the coordinates of vertices of the Petya's polygon in counterclockwise order. Guaranteed, that the given polygon satisfies the conditions described in the statement.

All coordinates of the rectangular window and all coordinates of the vertices of the polygon are non-negative and do not exceed 1500015\,000 .

输出格式

Print the number of black connected areas of Petya's polygon, which can be seen through the rectangular window.

输入输出样例

  • 输入#1

    5 7 16 3
    16
    0 0
    18 0
    18 6
    16 6
    16 1
    10 1
    10 4
    7 4
    7 2
    2 2
    2 6
    12 6
    12 12
    10 12
    10 8
    0 8
    

    输出#1

    2

说明/提示

The example corresponds to the picture above.

首页