2016暑假多校联合---Counting Intersections
The input data guarantee that no two segments share the same endpoint, no covered segments, and no segments with length 0.
The first line of each test case contains a number n(1<=n<=100000), the number of segments. Next n lines, each with for integers, x1, y1, x2, y2, means the two endpoints of a segment. The absolute value of the coordinate is no larger than 1e9.
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <map>
using namespace std;
typedef long long LL;
LL ax[],ay[];
LL c[];
LL Lowbit(LL t)
{
return t&(t^(t-));
}
LL Sum(LL x)
{
LL sum = ;
while(x > )
{
sum += c[x];
x -= Lowbit(x);
}
return sum;
}
void add(LL li,LL d)
{
while(li<)
{
c[li]+=d;
li=li+Lowbit(li);
}
} struct Nodex
{
LL x1,x2;
LL y;
}nodex[]; struct Nodey
{
LL y1,y2;
LL x;
}nodey[]; struct Node
{
LL x;
LL y;
}node[]; bool cmp1(const Nodey s1,const Nodey s2)
{
return s1.x<s2.x;
} bool cmp2(const Node s1,const Node s2)
{
return s1.x<s2.x;
}
map<LL,LL>q1;
map<LL,LL>q2; int main()
{
LL T,n;
scanf("%I64d",&T);
while(T--)
{
q1.clear();
q2.clear();
scanf("%I64d",&n);
LL tot1=,tot2=;
for(LL i=;i<n;i++)
{
LL x1,x2,y1,y2;
scanf("%I64d%I64d%I64d%I64d",&x1,&y1,&x2,&y2);
if(x1==x2)
{
nodey[tot2].y1=min(y1,y2);
nodey[tot2].y2=max(y1,y2);
nodey[tot2++].x=x1;
}
else
{
nodex[tot1].x1=min(x1,x2);
nodex[tot1].x2=max(x1,x2);
nodex[tot1++].y=y1;
}
} LL num1,num2;
for(LL i=;i<tot1;i++)
{
ax[i*]=nodex[i].x1;
ax[i*+]=nodex[i].x2;
}
num1=*tot1;
for(LL i=;i<tot2;i++)
{
ax[num1++]=nodey[i].x;
}
sort(ax,ax+num1);
LL tot=,pre=-;
for(LL i=;i<num1;i++)
{
if(ax[i]!=pre)
{
pre=ax[i];
q1[pre]=++tot;
}
} for(LL i=;i<tot2;i++)
{
ay[i*]=nodey[i].y1;
ay[i*+]=nodey[i].y2;
}
num2=*tot2;
for(LL i=;i<tot1;i++)
ay[num2++]=nodex[i].y;
sort(ay,ay+num2);
tot=,pre=-;
for(LL i=;i<num2;i++)
{
if(ay[i]!=pre)
{
pre=ay[i];
q2[pre]=++tot;
}
} for(LL i=;i<tot1;i++)
{
nodex[i].x1=q1[nodex[i].x1];
nodex[i].x2=q1[nodex[i].x2];
nodex[i].y=q2[nodex[i].y];
}
for(LL i=;i<tot2;i++)
{
nodey[i].y1=q2[nodey[i].y1];
nodey[i].y2=q2[nodey[i].y2];
nodey[i].x=q1[nodey[i].x];
} //for(LL i=0;i<tot1;i++)
//cout<<"x: "<<nodex[i].x1<<" "<<nodex[i].x2<<" "<<nodex[i].y<<endl;
//for(LL i=0;i<tot1;i++)
//cout<<"y: "<<nodey[i].y1<<" "<<nodey[i].y2<<" "<<nodey[i].x<<endl;
sort(nodey,nodey+tot2,cmp1);
tot=;
for(LL i=;i<tot1;i++)
{
node[tot].x=nodex[i].x1;
node[tot++].y=nodex[i].y;
node[tot].x=nodex[i].x2+;
node[tot++].y=-nodex[i].y;
}
sort(node,node+tot,cmp2);
LL j=,k=,sum=;
memset(c,,sizeof(c));
for(LL i=;i<=;i++)
{
while(node[j].x==i&&j<tot)
{
if(node[j].y>)
add(node[j].y,);
else
add(-node[j].y,-);
j++;
}
while(nodey[k].x==i&&k<tot2)
{
sum+=Sum(nodey[k].y2)-Sum(nodey[k].y1-);
k++;
}
if(j>=tot) break;
if(k>=tot2) break;
}
printf("%I64d\n",sum);
}
return ;
}
2016暑假多校联合---Counting Intersections的更多相关文章
- 2016暑假多校联合---Rikka with Sequence (线段树)
2016暑假多校联合---Rikka with Sequence (线段树) Problem Description As we know, Rikka is poor at math. Yuta i ...
- 2016暑假多校联合---Windows 10
2016暑假多校联合---Windows 10(HDU:5802) Problem Description Long long ago, there was an old monk living on ...
- 2016暑假多校联合---Substring(后缀数组)
2016暑假多校联合---Substring Problem Description ?? is practicing his program skill, and now he is given a ...
- 2016暑假多校联合---To My Girlfriend
2016暑假多校联合---To My Girlfriend Problem Description Dear Guo I never forget the moment I met with you. ...
- 2016暑假多校联合---A Simple Chess
2016暑假多校联合---A Simple Chess Problem Description There is a n×m board, a chess want to go to the po ...
- 2016暑假多校联合---Another Meaning
2016暑假多校联合---Another Meaning Problem Description As is known to all, in many cases, a word has two m ...
- 2016暑假多校联合---Death Sequence(递推、前向星)
原题链接 Problem Description You may heard of the Joseph Problem, the story comes from a Jewish historia ...
- 2016暑假多校联合---Joint Stacks (STL)
HDU 5818 Problem Description A stack is a data structure in which all insertions and deletions of e ...
- 2016暑假多校联合---GCD
Problem Description Give you a sequence of N(N≤100,000) integers : a1,...,an(0<ai≤1000,000,000). ...
随机推荐
- MVVM架构~knockoutjs系列之为Ajax传递Ko数组对象
返回目录 一些要说的 这是一个很有意思的题目,在KO里,有对象和数组对象两种,但这两种对象对外表现都是一个function,如果希望得到他的值,需要进行函数式调用,如ko_a(),它的结果为一个具体值 ...
- Redis的介绍及使用实例.
本文就来讲一下Redis安装的方法和Redis生成主键的优点以及和其他几种方式生成主键的对比. 1,Redis安装首先将Redis的tar包拷贝到Linux下的根目录 然后解压到redis文件夹下:( ...
- Atitit USRqc62204 证书管理器标准化规范
Atitit USRqc62204 证书管理器标准化规范 /atiplat_cms/src/com/attilax/cert/CertSrv4mv.java /** * */ package com. ...
- fir.im Weekly - 新开发时代,需要什么样的技术分享
"2016年,当我们迎来了如Xcode 8.Swift 3.SiriKit.Android N.Android Instant Apps.React Native等诸多移动开发技术.开发工具 ...
- iOS-------应用性能调优的25个建议和技巧
性能对 iOS 应用的开发尤其重要,如果你的应用失去反应或者很慢,失望的用户会把他们的失望写满App Store的评论.然而由于iOS设备的限制,有时搞好性能是一件难事.开发过程中你会有很多需要注意的 ...
- webService 基础
一. 1. 定义:Web service是一个平台独立的,跨语言.跨平台.低耦合的,自包含的.基于可编程的web的应用程序,可使用开放的XML (标准通用标记语言下的一个子集)标准来描述.发布.发现. ...
- 自动登录VSS
每次打开vss都需要输入用户名.密码,用起来多少有些麻烦.用以下两种方式即可实现自动登录: 方法1: 在vss快捷方式的命令行最后面添加-y参数 "C:/Program Files/Micr ...
- 如何用sublime 编写sass
使用了Sublime Text也有一段时日了,然后在现在而言,小觉的coding工具已经非其莫属了,接着小觉因为近期忙着项目的原因,同时还要抽空编辑博客的原因,就暂时把它放在一旁了,现在偶然想起也就说 ...
- 对于资源上MissingScript的清理方案讨论
Unity工程随着复杂度的提升,常会有Prefab上的脚本丢失的情况,如下图所示: 首先失去关联的脚本,是没有线索找到原来是什么文件的,那么有没有办法批处理将这些MissingScript进行一下清理 ...
- Linux命令之diff
1.命令格式: diff[参数][文件1或目录1][文件2或目录2] 2.命令功能: diff命令能比较单个文件或者目录内容.如果指定比较的是文件,则只有当输入为文本文件时才有效.以逐行的方式,比较文 ...