Educational Codeforces Round 68 E. Count The Rectangles

传送门

题意:

给出不超过\(n,n\leq 5000\)条直线,问共形成多少个矩形。

思路:

考虑到\(n\)的范围不大,所以可以暴力枚举两条平行的直线,接下来处理的就是与其垂直的直线的数量。

满足相交成矩形有两个条件,假如我们枚举的直线是垂直于\(x\)轴的,那么两个条件即为\(low\leq y_i\leq high,x_{i,0}\leq left,right\leq x_{i,1}\)。

所以我们可以考虑扫描线的思想,根据左右端点选择插入/删除直线,插入的时候利用权值树状数组维护其\(y_i\)值。之后对于竖直的两条直线,查询范围在\(low\)~\(high\)之间的水平直线个数即可。设其为\(x\),那么对答案的贡献就为\(C_{x}^2\)。

注意一下\(low\)可能大于\(high\)的情况。

代码如下:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 50005;
int n;
int x[N][2], y[N][2];
int X[N], Y[N];
struct seg1{
int x, y1, y2;
bool operator < (const seg1 &A) const {
return x < A.x;
}
}s1[N];
struct seg2{
int y, x1, x2;
}s2[N];
vector <int> v1[N], v2[N], v3[N];
int c[N];
int lowbit(int x) {
return x & (-x);
}
void add(int x, int v) {
for(int i = x; i < N; i += lowbit(i)) c[i] += v;
}
int query(int p) {
int ans = 0;
for(int i = p; i; i -= lowbit(i)) ans += c[i];
return ans;
}
int main() {
ios::sync_with_stdio(false); cin.tie(0);
cin >> n;
int D1 = 0, D2 = 0;
for(int i = 1; i <= n; i++) {
cin >> x[i][0] >> y[i][0] >> x[i][1] >> y[i][1];
X[++D1] = x[i][0]; X[++D1] = x[i][1];
Y[++D2] = y[i][0]; Y[++D2] = y[i][1];
}
sort(X + 1, X + D1 + 1); sort(Y + 1, Y + D2 + 1);
D1 = unique(X + 1, X + D1 + 1) - X - 1;
D2 = unique(Y + 1, Y + D2 + 1) - Y - 1;
int t1 = 0, t2 = 0;
for(int i = 1; i <= n; i++) {
x[i][0] = lower_bound(X + 1, X + D1 + 1, x[i][0]) - X;
x[i][1] = lower_bound(X + 1, X + D1 + 1, x[i][1]) - X;
y[i][0] = lower_bound(Y + 1, Y + D2 + 1, y[i][0]) - Y;
y[i][1] = lower_bound(Y + 1, Y + D2 + 1, y[i][1]) - Y;
if(x[i][0] > x[i][1]) swap(x[i][0], x[i][1]);
if(y[i][0] > y[i][1]) swap(y[i][0], y[i][1]);
if(x[i][0] == x[i][1]) s1[++t1] = seg1{x[i][0], y[i][0], y[i][1]};
if(y[i][0] == y[i][1]) s2[++t2] = seg2{y[i][0], x[i][0], x[i][1]};
if(y[i][0] == y[i][1]) v1[x[i][0]].push_back(t2);
}
sort(s1 + 1, s1 + t1 + 1);
for(int i = 1; i <= t1; i++) v3[s1[i].x].push_back(i);
ll res = 0;
int bound = D1;
for(int x = 1; x <= bound; x++) {
for(auto it : v2[x]) {
add(s2[it].y, -1);
}
for(auto it : v1[x]) {
add(s2[it].y, 1);
v2[s2[it].x2].push_back(it);
}
for(auto i : v3[x]) {
for(int j = x + 1; j <= bound; j++) {
for(auto k : v3[j]) {
int R = min(s1[i].y2, s1[k].y2), L = max(s1[i].y1, s1[k].y1);
if(L > R) continue;
int tmp = query(R) - query(L - 1);
res += 1ll * tmp * (tmp - 1) / 2;
}
for(auto it : v2[j]) add(s2[it].y, -1);
}
for(int j = x + 1; j <= bound; j++) {
for(auto it : v2[j]) add(s2[it].y, 1);
}
}
}
cout << res;
return 0;
}

Educational Codeforces Round 68 E. Count The Rectangles的更多相关文章

  1. Educational Codeforces Round 68 差G

    Educational Codeforces Round 68 E 题意:有 n 个线段,每个都是平行 x 或者 y 轴,只有互相垂直的两线段才会相交.问形成了多少个矩形. \(n \le 5000, ...

  2. Educational Codeforces Round 68

    目录 Contest Info Solutions A.Remove a Progression B.Yet Another Crosses Problem C.From S To T D.1-2-K ...

  3. Educational Codeforces Round 68 Editorial

    题目链接:http://codeforces.com/contest/1194                                            A.Remove a Progre ...

  4. Educational Codeforces Round 68 (Rated for Div. 2)---B

    http://codeforces.com/contest/1194/problem/B /* */ # include <bits/stdc++.h> using namespace s ...

  5. Educational Codeforces Round 84 E. Count The Blocks

    传送门: 1327- E. Count The Blocks  题意:给你一个整数n,求10^n内(每个数有前导零)长度为1到n的块分别有多少个.块的含义是连续相同数字的长度. 题解:从n=1开始枚举 ...

  6. Educational Codeforces Round 68 (Rated for Div. 2)补题

    A. Remove a Progression 签到题,易知删去的为奇数,剩下的是正偶数数列. #include<iostream> using namespace std; int T; ...

  7. Educational Codeforces Round 68 (Rated for Div. 2) C. From S To T (字符串处理)

    C. From S To T time limit per test1 second memory limit per test256 megabytes inputstandard input ou ...

  8. Educational Codeforces Round 68 (Rated for Div. 2) D. 1-2-K Game (博弈, sg函数,规律)

    D. 1-2-K Game time limit per test2 seconds memory limit per test256 megabytes inputstandard input ou ...

  9. Educational Codeforces Round 68 (Rated for Div. 2)D(SG函数打表,找规律)

    #include<bits/stdc++.h>using namespace std;int sg[1007];int main(){ int t; cin>>t; while ...

随机推荐

  1. 监听浏览器tab选项卡选中事件,点击浏览器tab标签页回调事件,浏览器tab切换监听事件

    js事件注册代码: <script> document.addEventListener('visibilitychange',function(){ //浏览器tab切换监听事件 if( ...

  2. Lab3:虚拟内存管理

    前言 虚拟内存是计算机系统内存管理的一种技术.它使得应用程序认为它拥有连续的可用的内存(一个连续完整的地址空间),而实际上,它通常是被分隔成多个物理内存碎片,还有部分暂时存储在外部磁盘存储器上,在需要 ...

  3. 【视频开发】IR-CUT作用

    自然界存在着各种波长的光线,通过折射人眼能看到不同颜色的光线,这就是光线的波长不同所导致的.其实还有许多光线是人眼看不到的,人眼识别光线的波长范围在320nm-760nm之间,超过760nm的光线人眼 ...

  4. BitSet源码

    public class BitSet1 implements Cloneable, java.io.Serializable { // >>>左边补0, << 右边补0 ...

  5. sql优化(原理,方法,特点,实例)

    整理的有点多,做好心理准备...... 1.资源优化理解: 不同设备,io不同.每种设备都有两个指标:延时(响应时间):表示硬件的突发处理能力:带宽(吞吐量):代表硬件持续处理能力. 每种硬件主要的工 ...

  6. 使用Fiddler抓包、wireshark抓包分析(三次握手、四次挥手深入理解)

    ==================Fiddler抓包================== Fiddler支持代理的功能,也就是说你所有的http请求都可以通过它来转发,Fiddler代理默认使用端口 ...

  7. C++工程师养成 每日一题(vector使用)

    题目: 链接:https://www.nowcoder.com/questionTerminal/6736cc3ffd1444a4a0057dee89be789b?orderByHotValue来源: ...

  8. golang输出双精度浮点例子(Printf)

    1 package main import "fmt" func main() { var sum int = 17 var count int = 5 var mean floa ...

  9. 【mybatis】mybatis查询 结果 用map接收,无实体接收 + 关联子表 一并返回主子表的结果

    如果后台程序没有实体对应mysql的数据表. 而mybatis想要查询mysql这个数据表的数据,返回给应用程序. 应用程序该如何接收? =============================== ...

  10. MOOC python笔记(二)python中的数据类型和基本语句

    python数据类型 数字类型 整数(int) 与数学中整数概念一致(数字大小没有限制,这和其他语言不同),整数可正可负,默认情况下,整数采用十进制.其他进制需要增加相应的引导符号. 如果是二进制在前 ...