A1576.[COCI-2016_2017-contest5]#6 Unija

省选/NOI-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

You are given N rectangles, which are centered in the center of the Cartesian coordinate system and their sides are parallel to the coordinate axes. Each rectangle is uniquely identified with its width (along the x-axis) and height (along the y-axis). The lower image depicts the first sample test.
Mirko has coloured each rectangle in a certain color and now wants to know the area of the coloured part of the paper. In other words, he wants to know the number of unit squares that belong to at least one rectangle.

输入格式

The first line of input contains the integer N (1 ≤ N ≤ 1 000 000), the number of rectangles.
Each of the following N lines contains even integers X and Y (2 ≤ X, Y ≤ 107 ), dimensions (width and height, respectively) of the corresponding rectangles.

输出格式

The first and only line of output must contain the required area.

输入输出样例

  • 输入#1

    3 
    8 2 
    4 4 
    2 6

    输出#1

    28
  • 输入#2

    5 
    2 10 
    4 4 
    2 2 
    8 8 
    6 6

    输出#2

    68

说明/提示

In test cases worth 40% of total points, all numbers from the input will be smaller than 3333.
In test cases worth 50% of total points, not a single rectangle will be located strictly within
another rectangle.

首页