题意:给你若干个平行于坐标轴的,长度大于0的线段,且任意两个线段没有公共点,不会重合覆盖。问有多少个交点。

析:题意很明确,可是并不好做,可以先把平行与x轴和y轴的分开,然后把平行y轴的按y坐标从小到大进行排序,然后我们可以枚举每一个平行x轴的线段,

我们可以把平行于x轴的线段当做扫描线,只不过有了一个范围,每次要高效的求出相交的线段数目,可以用一个优先队列来维护平行y轴的线段的上坐标,

如果在该平行于x轴的范围就给相应的横坐标加1,这样就很容易想到是用树状数组来维护,然后每次求出最左边和最右边,相减即可,但是由于数据范围太大,

所以我们考虑离散化横坐标。

代码如下:

  1. #pragma comment(linker, "/STACK:1024000000,1024000000")
  2. #include <cstdio>
  3. #include <string>
  4. #include <cstdlib>
  5. #include <cmath>
  6. #include <iostream>
  7. #include <cstring>
  8. #include <set>
  9. #include <queue>
  10. #include <algorithm>
  11. #include <vector>
  12. #include <map>
  13. #include <cctype>
  14. #include <cmath>
  15. #include <stack>
  16. #include <sstream>
  17. #include <list>
  18. #define debug() puts("++++");
  19. #define gcd(a, b) __gcd(a, b)
  20. #define lson l,m,rt<<1
  21. #define rson m+1,r,rt<<1|1
  22. #define freopenr freopen("in.txt", "r", stdin)
  23. #define freopenw freopen("out.txt", "w", stdout)
  24. using namespace std;
  25.  
  26. typedef long long LL;
  27. typedef unsigned long long ULL;
  28. typedef pair<int, int> P;
  29. const int INF = 0x3f3f3f3f;
  30. const double inf = 0x3f3f3f3f3f3f;
  31. const double PI = acos(-1.0);
  32. const double eps = 1e-8;
  33. const int maxn = 200000 + 10;
  34. const int mod = 1000007;
  35. const int dr[] = {-1, 0, 1, 0};
  36. const int dc[] = {0, 1, 0, -1};
  37. const char *de[] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
  38. int n, m;
  39. const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  40. const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  41. inline bool is_in(int r, int c){
  42. return r >= 0 && r < n && c >= 0 && c < m;
  43. }
  44. struct Node{
  45. int s, e, pos;
  46. Node(){ }
  47. Node(int ss, int ee, int p) : s(ss), e(ee), pos(p) { }
  48. };
  49. bool cmp1(const Node &lhs, const Node &rhs){ return lhs.s < rhs.s; }
  50. bool cmp2(const Node &lhs, const Node &rhs){ return lhs.pos < rhs.pos; }
  51.  
  52. vector<Node> row, col;
  53. vector<int> all;
  54.  
  55. struct node{
  56. int id, val;
  57. node(int i, int v) : id(i), val(v) { }
  58. bool operator < (const node &p) const{
  59. return val > p.val;
  60. }
  61. };
  62.  
  63. int sum[maxn<<2];
  64.  
  65. int lowbit(int x){ return -x&x; }
  66. void add(int x, int val){
  67. while(x <= n){
  68. sum[x] += val;
  69. x += lowbit(x);
  70. }
  71. }
  72.  
  73. int getSum(int x){
  74. int ans = 0;
  75. while(x){
  76. ans += sum[x];
  77. x -= lowbit(x);
  78. }
  79. return ans;
  80. }
  81.  
  82. int main(){
  83. int T; cin >> T;
  84. while(T--){
  85. scanf("%d", &n);
  86. row.clear(); col.clear(); all.clear();
  87. for(int i = 0; i < n; ++i){
  88. int x1, x2, y1, y2;
  89. scanf("%d %d %d %d", &x1, &y1, &x2, &y2);
  90. if(x1 == x2){
  91. if(y1 > y2) swap(y1, y2);
  92. col.push_back(Node(y1, y2, x1));
  93. }
  94. else{
  95. if(x1 > x2) swap(x1, x2);
  96. row.push_back(Node(x1, x2, y1));
  97. }
  98. all.push_back(x1);
  99. all.push_back(x2);
  100. }
  101. sort(all.begin(), all.end());
  102. all.erase(unique(all.begin(), all.end()), all.end());
  103. sort(col.begin(), col.end(), cmp1);
  104. sort(row.begin(), row.end(), cmp2);
  105. memset(sum, 0, sizeof sum);
  106. n <<= 1;
  107. LL ans = 0;
  108. int cnt = 0;
  109. priority_queue<node> pq;
  110. for(int i = 0; i < row.size(); ++i){
  111. while(cnt < col.size() && row[i].pos >= col[cnt].s){
  112. int id = lower_bound(all.begin(), all.end(), col[cnt].pos) - all.begin() + 1;
  113. pq.push(node(id, col[cnt++].e));
  114. add(id, 1);
  115. }
  116. while(!pq.empty() && row[i].pos > pq.top().val){
  117. add(pq.top().id, -1);
  118. pq.pop();
  119. }
  120. int l = lower_bound(all.begin(), all.end(), row[i].s) - all.begin() + 1;
  121. int r = lower_bound(all.begin(), all.end(), row[i].e) - all.begin() + 1;
  122. ans += getSum(r) - getSum(l-1);
  123. }
  124. printf("%lld\n", ans);
  125. }
  126. return 0;
  127. }

  

HDU 5862 Counting Intersections (离散化+扫描线+树状数组)的更多相关文章

  1. HDU 5862 Counting Intersections(离散化+树状数组)

    HDU 5862 Counting Intersections(离散化+树状数组) 题目链接http://acm.split.hdu.edu.cn/showproblem.php?pid=5862 D ...

  2. hdu 3887 Counting Offspring dfs序+树状数组

    Counting Offspring Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Othe ...

  3. HDU6447(离散化扫描线+树状数组)

    一眼看过去就x排序扫描一下,y是1e9的离散化一下,每层用树状数组维护一下,然后像dp倒着循环似的树状数组就用y倒着插就可行了. 类似题目练习:BZOJ4653.BZOJ1218 #pragma co ...

  4. HDU 5862 Counting Intersections 扫描线+树状数组

    题目链接: http://acm.split.hdu.edu.cn/showproblem.php?pid=5862 Counting Intersections Time Limit: 12000/ ...

  5. Hdu 5862 Counting Intersections(有n条线段,每一条线段都是平行于x轴或者y轴,问有多少个交点+树状数组区间求和单点跟新)

    传送门:Hdu 5862 Counting Intersections 题意:有n条线段,每一条线段都是平行于x轴或者y轴,问有多少个交点 分析: 基本的操作流程是:先将所有的线段按照横树坐标x按小的 ...

  6. hdu 5862 Counting Intersections

    传送门:hdu 5862 Counting Intersections 题意:对于平行于坐标轴的n条线段,求两两相交的线段对有多少个,包括十,T型 官方题解:由于数据限制,只有竖向与横向的线段才会产生 ...

  7. 【BZOJ1818】[Cqoi2010]内部白点 扫描线+树状数组

    [BZOJ1818][Cqoi2010]内部白点 Description 无限大正方形网格里有n个黑色的顶点,所有其他顶点都是白色的(网格的顶点即坐标为整数的点,又称整点).每秒钟,所有内部白点同时变 ...

  8. [BZOJ4822][CQOI2017]老C的任务(扫描线+树状数组)

    4822: [Cqoi2017]老C的任务 Time Limit: 20 Sec  Memory Limit: 512 MBSubmit: 379  Solved: 203[Submit][Statu ...

  9. FZU 2225 小茗的魔法阵 扫描线+树状数组

    这个题和一个CF上的找"Z"的题差不多,都是扫描线+树状数组 从右上角的主对角线开始扫描,一直扫到左下角,每次更新,右延伸等于该扫描线的点,注意在其所在的树状数组更新就好了 时间复 ...

随机推荐

  1. poj 1019 Number Sequence 【组合数学+数字x的位宽函数】

    题目地址:http://poj.org/problem?id=1019 Number Sequence Time Limit: 1000MS   Memory Limit: 10000K Total ...

  2. ELK的使用

    首先安装jdk,我这里使用open-jdk yum list all | grep jdk yum -y install java-1.8.0-openjdk-devel, java-1.8.0-op ...

  3. eclipse从Git获取项目更新

    1.项目上右键 ——> Team ——> pull   如果报错:   解决方法:   依次打开:Window ——> Preferences ——> Team ——> ...

  4. mysql 启动服务错误

    在博客上看到下面这个文档解决了问题.推荐可以看下. http://blog.csdn.net/yaowuliu/article/details/51133279

  5. linux raid技术

    一.概念 磁盘阵列(Redundant Arrays of Independent Disks,RAID),有“独立磁盘构成的具有冗余能力的阵列”之意.是为了提高文件在磁盘上的读写速度而研究出来的. ...

  6. POJ 1639 Picnic Planning:最小度限制生成树

    题目链接:http://poj.org/problem?id=1639 题意: 给你一个无向图,n个节点,m条边,每条边有边权. 让你求一棵最小生成树,同时保证1号节点的度数<=k. 题解: 最 ...

  7. spring boot: 一般注入说明(五) @Component, application event事件为Bean与Bean之间通信提供了支持

    spring的事件,为Bean与Bean之间通信提供了支持,当一个Bean处理完成之后,希望另一个Bean知道后做相应的事情,这时我们就让另外一个Bean监听当前Bean所发送的事件. spring的 ...

  8. PS 滤镜— —Twirl Filter

    clc; clear all; close all; addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm'); I=imread ...

  9. 洛谷【P2201】数列编辑器

    我对模拟的理解:http://www.cnblogs.com/AKMer/p/9064018.html 题目传送门:https://www.luogu.org/problemnew/show/P220 ...

  10. bzoj 2096 [POI2004]ZAW——二进制枚举

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2069 可以把直接相连的点分成  从1点出的一部分  和  走向1点的一部分.多起点最短路就和 ...