codeforces 854 problem E
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 ≤ 200 000, 1 ≤ q ≤ 200 000) — 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 land 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.
2 3
1 2
1 1 1 1
1 1 1 2
1 1 2 2
1
1
1
4 2
1 3 2 4
4 1 4 4
1 1 2 3
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:





这道题 题意就是给你n个点 这n个点 两两可以组成一个矩阵(作为两个角的位置)
然后给你q个询问 询问给你一个矩阵的左上角和右上角 求 n个点两两配对组成的矩阵有多少个和他有交
这道题我的写法可能有点暴力
就是把一个矩阵的四条边延长 延长之后呢 就变成了九个矩阵
这样就变成了这九个矩阵之间两两配对之后是否和矩阵有交
这个画一下图应该就可以了 至于求每个矩阵中有多少个点
就可以利用扫描线来实现 一个询问拆成9个 容斥一下就可以得到全部答案了
复杂度主要是排序的nlogn 当然因为拆询问的缘故 n要乘9
代码略丑QAQ
#include<cstdio>
#include<cstring>
#include<algorithm>
#define LL long long
using namespace std;
const int M=2e6+;
int read(){
int ans=,f=,c=getchar();
while(c<''||c>''){if(c=='-') f=-; c=getchar();}
while(c>=''&&c<=''){ans=ans*+(c-''); c=getchar();}
return ans*f;
}
LL tot;
int s[*M];
LL ans[M][];
int n,m,xp,qp,ep;
int lowbit(int x){return x&-x;}
void add(int x,LL v){
while(x<=n){
s[x]+=v;
x+=lowbit(x);
}
}
int query(int x){
LL ans=;
while(x){
ans+=s[x];
x-=lowbit(x);
}
return ans;
}
struct Q{
int r,h,id,pos;
bool operator <(const Q& x)const{return h<x.h;}
void calc(){ans[id][pos]=query(r);}
}q[*M];
struct pos{
int x,y,w;
bool operator <(const pos& h)const{return y<h.y;}
void calc(){add(x,w);}
}e[M];
int main()
{
int x1,y1,x2,y2;
n=read(); m=read();
for(int i=;i<=n;i++){
y1=read();
e[ep++]=(pos){i,y1,};
}
for(int i=;i<=m;i++){
x1=read(); y1=read(); x2=read(); y2=read();
q[qp++]=(Q){x1-,y1-,i,};
q[qp++]=(Q){x1-,y2,i,};
q[qp++]=(Q){x1-,n,i,};
q[qp++]=(Q){x2,y1-,i,};
q[qp++]=(Q){x2,y2,i,};
q[qp++]=(Q){x2,n,i,};
q[qp++]=(Q){n,y1-,i,};
q[qp++]=(Q){n,y2,i,};
q[qp++]=(Q){n,n,i,};
}
sort(e,e+ep); sort(q,q+qp);
for(int i=,j=;i<qp;i++){
while(j<ep&&e[j].y<=q[i].h) e[j++].calc();
q[i].calc();
}
for(int i=;i<=m;i++){
tot=;
LL h[];
h[]=ans[i][];
h[]=ans[i][]-ans[i][];
h[]=ans[i][]-ans[i][];
h[]=ans[i][]-ans[i][];
h[]=ans[i][]-ans[i][]-ans[i][]+ans[i][];
h[]=ans[i][]-ans[i][]-ans[i][]+ans[i][];
h[]=ans[i][]-ans[i][];
h[]=ans[i][]-ans[i][]-ans[i][]+ans[i][];
h[]=ans[i][]-ans[i][]-ans[i][]+ans[i][];
tot=tot+h[]*(h[]+h[]+h[]+h[]+h[]+h[]+h[]+h[]);
tot=tot+h[]*(h[]-)/;
tot=tot+h[]*(h[]+h[]+h[]);
tot=tot+h[]*(h[]+h[]);
tot=tot+h[]*(h[]+h[]+h[]);
tot=tot+h[]*(h[]+h[]+h[]);
tot=tot+h[]*(h[]+h[]+h[]+h[]+h[]);
printf("%I64d\n",tot);
}
return ;
}
codeforces 854 problem E的更多相关文章
- CodeForces 1151C Problem for Nazar
题目链接:http://codeforces.com/problemset/problem/1151/C 题目大意: 有一个只存奇数的集合A = {1, 3, 5……2*n - 1,……},和只存偶数 ...
- codeforces gym100801 Problem G. Graph
传送门:https://codeforces.com/gym/100801 题意: 给你一个DAG图,你最多可以进行k次操作,每次操作可以连一条有向边,问你经过连边操作后最小拓扑序的最大值是多少 题解 ...
- codeforces gym100801 Problem J. Journey to the “The World’s Start”
传送门:https://codeforces.com/gym/100801 题意: 小明坐地铁,现在有n-1种类型的地铁卡卖,现在小明需要买一种地铁票,使得他可以在t的时间内到达终点站,地铁票的属性为 ...
- Codeforces 1188E - Problem from Red Panda(找性质+组合数学)
Codeforces 题面传送门 & 洛谷题面传送门 咦,题解搬运人竟是我? 一道很毒的计数题. 先转化下题意,每一次操作我们可以视作选择一种颜色并将其出现次数 \(+k\),之后将所有颜色的 ...
- CodeForces 688C-NP-Hard Problem
题意: 给你一个无向图,判断是否能够构成一个二分图,如果能的话,输出二分图左边的集合和右边的集合 分析: 先给每一个顶点的color初始化-1,表示没有被染色,用vector数组v[a],表示元素a所 ...
- codeforces #583 problem D(搜索好题)
题目大意:在一个已经有障碍的地图上,设置尽可能少的障碍使得(1,1)无法到达(n,m),行进路线位向下或向右. 数据范围:n*m<=1e6 解题思路:答案一定是小于等于2的,因为可以直接阻碍(1 ...
- Codeforces Round #433 (Div. 2, based on Olympiad of Metropolises)
A. Fraction 题目链接:http://codeforces.com/contest/854/problem/A 题目意思:给出一个数n,求两个数a+b=n,且a/b不可约分,如果存在多组满足 ...
- Codeforces 854B Maxim Buys an Apartment:贪心
题目链接:http://codeforces.com/contest/854/problem/B 题意: 有n栋房子从1到n排成一排,有k栋房子已经被售出. 现在你要买一栋“好房子”. 一栋房子是“好 ...
- #433 Div2 Problem C Planning (贪心 && 优先队列)
链接 : http://codeforces.com/contest/854/problem/C 题意 : 有 n 架飞机需要分别在 1~n 秒后起飞,允许起飞的时间是从 k 秒后开始,给出每一架飞机 ...
随机推荐
- 我的阿里之路+Java面经考点
我的阿里之路+Java面经考点 时间:2018-03-19 23:03 来源:未知 作者:admin 点击:87次 我的2017是忙碌的一年,从年初备战实习春招,年三十都在死磕JDK源码,三 ...
- [转]使用Gradle管理你的Android Studio工程
本文转自:http://www.flysnow.org/2015/03/30/manage-your-android-project-with-gradle.html Gradle简介 Gradle ...
- 如何修改Github上提交的错误用户地址和姓名
Changing author info https://help.github.com/articles/changing-author-info/ To change the name an ...
- fiddler之弱网测试
今天就说一下如何使用fiddler做弱网测试 1.首先要把手机的代理打开,这就不多讲了哈,不懂得话请点传送门:https://www.cnblogs.com/fuxinxin/p/9146693.ht ...
- 洛谷P1378油滴扩展
题目描述 在一个长方形框子里,最多有N(0≤N≤6)个相异的点,在其中任何一个点上放一个很小的油滴,那么这个油滴会一直扩展,直到接触到其他油滴或者框子的边界. 必须等一个油滴扩展完毕才能放置下一个油滴 ...
- 常见 SQL语句使用 增删改查
一.常见的增删改查(一).查:1.SELECT 列名称 FROM 表名称,其中列名可以是多个,中间用豆号分开,如SELECT LastName,FirstName FROM Persons: 2.SE ...
- Chromium多进程资源加载
webkit笔记,主要来自 朱永盛 <WebKit技术内幕> 学习笔记,转载就注明原著,该书是国内仅有的Webkit内核的书籍,学习的好导师,推荐有兴趣的朋友可以购买 多进程 资源的实际加 ...
- js canvas captcha
js canvas captcha https://thejackalofjavascript.com/building-a-captcha-using-html5-canvas/ https://a ...
- Delphi中取得程序版本号
Delphi做的程序,如果想包含版本信息, 必须在Delphi的集成编辑环境的菜单“Project/Options/Version Info”里面添加版本信息.即在Version Info 选项卡中选 ...
- 2017 Multi-University Training Contest - Team 2 Puzzle
题目大意: 给定n, m, p.然后按照一个规则往n*m的方格里填数,最后一个方格是空格,然后玩拼图游戏,问能否复原 规则是:把1~n*m-1的排列中的第1,p+1,2*p+1.....个数依次取出来 ...