CF853C.Boredom
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Ilya is sitting in a waiting area of Metropolis airport and is bored of looking at time table that shows again and again that his plane is delayed. So he took out a sheet of paper and decided to solve some problems.
First Ilya has drawn a grid of size n×n and marked n squares on it, such that no two marked squares share the same row or the same column. He calls a rectangle on a grid with sides parallel to grid sides beautiful if exactly two of its corner squares are marked. There are exactly n⋅(n−1)/2 beautiful rectangles.
Ilya has chosen q query rectangles on a grid with sides parallel to grid sides (not necessarily beautiful ones), and for each of those rectangles he wants to find its beauty degree. Beauty degree of a rectangle is the number of beautiful rectangles that share at least one square with the given one.
Now Ilya thinks that he might not have enough time to solve the problem till the departure of his flight. You are given the description of marked cells and the query rectangles, help Ilya find the beauty degree of each of the query rectangles.
输入格式
The first line of input contains two integers n and q ( 2<=n<=200000 , 1<=q<=200000 ) — the size of the grid and the number of query rectangles.
The second line contains n integers p1,p2,...,pn , separated by spaces ( 1<=pi<=n , all pi are different), they specify grid squares marked by Ilya: in column i he has marked a square at row pi , rows are numbered from 1 to n , bottom to top, columns are numbered from 1 to n , left to right.
The following q lines describe query rectangles. Each rectangle is described by four integers: l,d,r,u ( 1<=l<=r<=n , 1<=d<=u<=n ), here l and r are the leftmost and the rightmost columns of the rectangle, d and u the bottommost and the topmost rows of the rectangle.
输出格式
For each query rectangle output its beauty degree on a separate line.
输入输出样例
输入#1
2 3 1 2 1 1 1 1 1 1 1 2 1 1 2 2
输出#1
1 1 1
输入#2
4 2 1 3 2 4 4 1 4 4 1 1 2 3
输出#2
3 5
说明/提示
The first sample test has one beautiful rectangle that occupies the whole grid, therefore the answer to any query is 1.
In the second sample test the first query rectangle intersects 3 beautiful rectangles, as shown on the picture below:
There are 5 beautiful rectangles that intersect the second query rectangle, as shown on the following picture: