Problem C
The Rectangles Are Surrounding Us!
You are given a list of rectangle boundaries. Each rectangle boundary is on integer coordinates. The rectangles surround squares on the coordinate grid. Your job is to determine the total number of such grid squares that are surrounded by at least one of the given rectangles.
Input
Input consists of a set of
Output
For each set of rectangles, print the total number of grid points they surround.
Sample Input 1 | Sample Output 1 |
---|---|
1 1 1 2 2 1 10 10 19 19 2 10 10 19 19 15 15 24 24 0 |
1 81 146 |