N ladies attend the ball in the King's palace. Every lady can be described with three values: beauty, intellect and richness. King's Master of Ceremonies knows that ladies are very special creatures. If some lady understands that there is other lady at the ball which is more beautiful, smarter and more rich, she can jump out of the window. He knows values of all ladies and wants to find out how many probable self-murderers will be on the ball. Lets denote beauty of the i-th lady by Bi, her intellect by Ii and her richness by Ri. Then i-th lady is a probable self-murderer if there is some j-th lady that Bi < Bj, Ii < Ij, Ri < Rj. Find the number of probable self-murderers.

Input

The first line contains one integer N (1 ≤ N ≤ 500000). The second line contains N integer numbers Bi, separated by single spaces. The third and the fourth lines contain sequences Ii and Ri in the same format. It is guaranteed that 0 ≤ Bi, Ii, Ri ≤ 109.

Output

Output the answer to the problem.

Examples
input
3
1 4 2
4 3 2
2 5 3
output
1

题意:给你一组人,每个人有三个数值a,b,c,如果存在一个人x的三个值均大于另一个人y的三个值,y将自杀,求最终有多少个人自杀?

思路:一开始以为是三维偏序……幸好并非如此.

如果只有两维的话,自然好解决,将一维从大到小排序,二维扔进一颗线段树,每次比较线段树中的最大值与当前要扔进的值,因为先放入的一维必然大,若此时二维又比线段树中已有二维小,这个数必然产生贡献.

那么如何拓展到三维呢?

刚刚的线段树还没有发挥到极致,比如区间求最小值.

看看数据emmmm500000

当然是离散化喽!

将第一个值离散化作为线段树中的插入的位置

将第二维从大到小排序这样可以忽略第二维的影响

因为逐个插入线段树的第二维一定是递减的

然后线段树中插入值的位置为第一维离散后的值

存储的数为第三维的值

对于每个新插入的数只要保证他插入的位置后面有一个值比他大的就产生了贡献(因为后放入所以y已经小了,插入的位置后面的数说明x也小了,若z再小说明此人跳楼自杀)

然后就好啦!

代码如下:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
#define lson root<<1
#define rson root<<1|1
#define maxn 500005 int t[maxn<<],h[maxn],m,n;
struct node
{
int x,y,z;
}tr[maxn]; bool cmp(node a,node b)
{
return a.y>b.y;
} void push_up(int root)
{
t[root]=max(t[lson],t[rson]);
} void build(int l,int r,int root)
{
t[root]=;
if(l==r)
{
return ;
}
int mid=(l+r)>>;
build(l,mid,lson);
build(mid+,r,rson);
} void update(int l,int r,int root,int p,int x)
{
if(l==r)
{
t[root]=max(t[root],x);
return;
}
int mid=(l+r)>>;
if(p<=mid)
{
update(l,mid,lson,p,x);
}
else
{
update(mid+,r,rson,p,x);
}
push_up(root);
} int query(int l,int r,int root,int li,int ri)
{
if(li<=l&&r<=ri)
{
return t[root];
}
int mid=(l+r)>>;
int val=;
if(li<=mid)
{
val=max(query(l,mid,lson,li,ri),val);
}
if(r>mid)
{
val=max(query(mid+,r,rson,li,ri),val);
}
return val;
} void init()
{
sort(h,h+m);
m=unique(h,h+m)-h;
build(,m,);
for(int i=;i<n;i++)
{
tr[i].x=lower_bound(h,h+m,tr[i].x)-h+;
}
sort(tr,tr+m,cmp);
} int main()
{
int ans,i,j,k;
scanf("%d",&n);
for(int i=;i<n;i++)
{
scanf("%d",&tr[i].x);
h[i]=tr[i].x;
}
for(int i=;i<n;i++)
{
scanf("%d",&tr[i].y);
}
for(int i=;i<n;i++)
{
scanf("%d",&tr[i].z);
}
m=n;
ans=;
init();
for(i=;i<n;i=j)
{
j=i;
while(j<n&&tr[j].y==tr[i].y)
{
if(query(,m,,tr[j].x+,m)>tr[j].z)
{
ans++;
}
j++;
}
for(k=i;k<j;k++)
{
update(,m,,tr[k].x,tr[k].z);
}
}
printf("%d\n",ans);
return ;
}

Codeforces 12D Ball(线段树)的更多相关文章

  1. Ball CodeForces - 12D (线段树)

    题目链接:https://cn.vjudge.net/problem/CodeForces-12D 题目大意:给你一个人的三个信息,如果存在一个人比当前人的这三个信息都大,那么这个人就会退出,问你最终 ...

  2. codeforces 12D Ball

    codeforces 12D Ball 这道题有两种做法 一种用树状数组/线段树维护区间最值,一种用map维护折线,昨天我刚遇见了一道类似的用STL维护折线的题目: 392D Three Arrays ...

  3. HDU.1556 Color the ball (线段树 区间更新 单点查询)

    HDU.1556 Color the ball (线段树 区间更新 单点查询) 题意分析 注意一下pushdown 和 pushup 模板类的题还真不能自己套啊,手写一遍才行 代码总览 #includ ...

  4. HDU 1556 Color the ball(线段树区间更新)

    Color the ball 我真的该认真的复习一下以前没懂的知识了,今天看了一下线段树,以前只会用模板,现在看懂了之后,发现还有这么多巧妙的地方,好厉害啊 所以就应该尽量搞懂 弄明白每个知识点 [题 ...

  5. Vasya and a Tree CodeForces - 1076E(线段树+dfs)

    I - Vasya and a Tree CodeForces - 1076E 其实参考完别人的思路,写完程序交上去,还是没理解啥意思..昨晚再仔细想了想.终于弄明白了(有可能不对 题意是有一棵树n个 ...

  6. Codeforces 787D. Legacy 线段树建模+最短路

    D. Legacy time limit per test:2 seconds memory limit per test:256 megabytes input:standard input out ...

  7. hdu 1556 Color the ball (线段树+代码详解)

    Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) T ...

  8. hdu 1556 Color the ball(线段树区间维护+单点求值)

    传送门:Color the ball Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/3276 ...

  9. ZOJ 2301 Color the Ball 线段树(区间更新+离散化)

    Color the Ball Time Limit: 2 Seconds      Memory Limit: 65536 KB There are infinite balls in a line ...

随机推荐

  1. web 面试题、简单题、复习题

    1. 概述MVC体系结构,各个部分都有那些技术来实现? M即model(模型,bean(domain)层)由javabean或EJB实现:V即view(视图,显示层)由jsp实现:C即controll ...

  2. Tomcat下WebSocket最大连接数测试

    WebSocket现在很常用,想要测试tomcat的最大连接数,今天试了一个可行的办法和配置(之前是用全公司的设备一起来测试的,真机环境的测试收到网络的影响很大,其实真实环境应用中,网络才是webso ...

  3. 【转载】解决SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问的方法

    1.开启Ad Hoc Distributed Queries组件,在sql查询编辑器中执行如下语句: exec sp_configure 'show advanced options',1 recon ...

  4. java 最差实践

    HashMap size 陷阱: 错误写法: Map map = new HashMap(collection.size()); for (Object o : collection) { map.p ...

  5. Python web框架 Tornado(二)异步非阻塞

    异步非阻塞 阻塞式:(适用于所有框架,Django,Flask,Tornado,Bottle) 一个请求到来未处理完成,后续一直等待 解决方案:多线程,多进程 异步非阻塞(存在IO请求): Torna ...

  6. Maven的安装及配置、Maven在Eclipse中的配置

    一.需要准备的东西 1. JDK 2. Eclipse 3. Maven程序包 二.检查JAVA安装 三.安装Maven 下载apache-maven-3.5.3-bin.zip解压即可. 四.配置M ...

  7. Flask 数据库多对多关系

    数据库使用关系建立记录之间的联系.其中,一对多关系是最常用的关系类型,它把一个记录和一组相关的记录联系在一起.实现这种关系时,要在“多”这一侧加入一个外键,指向“一”这一侧联接的记录.大部分的其他关系 ...

  8. 图灵机器人,web录音实现自动化交互问答

    一.图灵机器人 介绍 图灵机器人 是以语义技术为核心驱动力的人工智能公司,致力于“让机器理解世界”,产品服务包括机器人开放平台.机器人OS和场景方案. 官方地址为: http://www.tuling ...

  9. leetcode554

    public class Solution { public int LeastBricks(IList<IList<int>> wall) { ) { ; } ; Dicti ...

  10. Java微信公众平台开发(十四)【番外篇】--微信web开发者工具使用

    转自:http://www.cuiyongzhi.com/post/58.html 为帮助开发者更方便.更安全地开发和调试基于微信的网页,微信推出了 web 开发者工具.它是一个桌面应用,通过模拟微信 ...