【BZOJ2827】千山鸟飞绝 hash+堆+SBT
【BZOJ2827】千山鸟飞绝
Description
Input
Output
Sample Input
1 1 1
3 1 2
4 4 4
2 0 1
2 2 3
5
1 1 2
2 4 4
2 4 3
3 0 1
5 0 1
Sample Output
4
6
8
8
HINT
题解:容易想到hash,将坐标相同的鸟都放到一起,用一个数据结构维护一下,这个数据结构需要维护以下操作:
插入,删除,统计个数;
统计权值最大值和次大值,以及其编号;
用最大值更新其它点的答案,用次大值更新最大值的答案。
可以用可删除堆维护最大值和次大值,其余的用SBT打标记维护。
#include <cstdio>
#include <cstring>
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
typedef long long ll;
const int maxn=30010;
const ll P=999983;
int n,m,tot;
int s1[maxn],s2[maxn],v[maxn],rt[maxn*11],X[maxn],Y[maxn];
bool vis[maxn*11];
struct node
{
int ch[2],siz,org,t1,t2;
}s[maxn];
struct pt
{
int x,y,num;
pt() {}
pt(int a,int b,int c) {x=a,y=b,num=c;}
};
vector<pt> hs[999990];
struct Num
{
int x;
Num() {}
Num(int a) {x=a;}
bool operator < (const Num &b) const
{
return v[x]<v[b.x];
}
};
struct heap
{
priority_queue<Num> p1,p2;
inline int top()
{
while(!p2.empty()&&p1.top().x==p2.top().x) p1.pop(),p2.pop();
return (p1.empty())?0:p1.top().x;
}
inline int top2()
{
int x=top();
if(p1.empty()) return 0;
p1.pop();
int y=top(); p1.push(Num(x));
return y;
}
inline void erase(int x) {p2.push(Num(x));}
inline void push(int x) {p1.push(Num(x));}
}p[maxn*11];
inline int point(int x,int y)
{
ll val=((((ll(x)<<20)+y)^((ll(y)<<10)+x))%P+P)%P;
int i;
for(i=0;i<(int)hs[val].size();i++) if(hs[val][i].x==x&&hs[val][i].y==y) return hs[val][i].num;
hs[val].push_back(pt(x,y,++tot));
return tot;
}
inline void upd(int x,int t1,int t2)
{
s1[s[x].org]=max(s1[s[x].org],t1),s2[s[x].org]=max(s2[s[x].org],t2);
s[x].t1=max(s[x].t1,t1),s[x].t2=max(s[x].t2,t2);
}
inline void pushdown(int x)
{
if(s[x].t1||s[x].t2)
{
if(s[x].ch[0]) upd(s[x].ch[0],s[x].t1,s[x].t2);
if(s[x].ch[1]) upd(s[x].ch[1],s[x].t1,s[x].t2);
s[x].t1=s[x].t2=0;
}
}
inline void pushup(int x)
{
s[x].siz=s[s[x].ch[0]].siz+s[s[x].ch[1]].siz+1;
}
inline void rotate(int &x,int d)
{
int y=s[x].ch[d];
pushdown(x),pushdown(y);
s[x].ch[d]=s[y].ch[d^1],s[y].ch[d^1]=x;
pushup(x),pushup(y);
x=y;
}
inline void maintain(int &x,int d)
{
if(s[s[s[x].ch[d]].ch[d]].siz>s[s[x].ch[d^1]].siz) rotate(x,d);
else if(s[s[s[x].ch[d]].ch[d^1]].siz>s[s[x].ch[d^1]].siz) rotate(s[x].ch[d],d^1),rotate(x,d);
else return ;
maintain(s[x].ch[d],d),maintain(s[x].ch[d^1],d^1);
maintain(x,d),maintain(x,d^1);
}
void insert(int &x,int y)
{
if(!x)
{
x=y,s[x].siz=1,s[x].ch[0]=s[x].ch[1]=s[x].t1=s[x].t2=0;
return ;
}
pushdown(x);
int d=(s[y].org>s[x].org);
insert(s[x].ch[d],y),pushup(x);
maintain(x,d);
}
int del(int &x,int y)
{
pushdown(x),s[x].siz--;
if(s[x].org==y)
{
if(!s[x].ch[0]||!s[x].ch[1])
{
int u=x;
x=s[x].ch[0]^s[x].ch[1];
return u;
}
int u=s[x].ch[1];
pushdown(u);
while(s[u].ch[0]) u=s[u].ch[0],pushdown(u);
s[x].org=s[u].org;
return del(s[x].ch[1],s[u].org);
}
if(s[x].org>y) return del(s[x].ch[0],y);
return del(s[x].ch[1],y);
}
void updata(int x,int t1,int t2)
{
if(!x) return ;
pushdown(x);
if(s[x].org<=t1) upd(s[x].ch[0],v[t1],0);
if(s[x].org>=t1) upd(s[x].ch[1],v[t1],0);
if(s[x].org==t1) s1[s[x].org]=max(s1[s[x].org],v[t2]);
else s1[s[x].org]=max(s1[s[x].org],v[t1]),updata(s[x].ch[t1>s[x].org],t1,t2);
}
inline int rd()
{
int ret=0,f=1; char gc=getchar();
while(gc<'0'||gc>'9') {if(gc=='-') f=-f; gc=getchar();}
while(gc>='0'&&gc<='9') ret=ret*10+(gc^'0'),gc=getchar();
return ret*f;
}
inline void add(int x,int y,int a,int b)
{
int pos=point(a,b);
s[y].org=x,insert(rt[pos],y);
p[pos].push(x);
upd(rt[pos],0,s[rt[pos]].siz-1);
updata(rt[pos],p[pos].top(),p[pos].top2());
}
inline int rem(int x,int a,int b)
{
int pos=point(a,b),y=del(rt[pos],x);
p[pos].erase(x);
return y;
}
void dfs(int x)
{
if(!x) return ;
pushdown(x);
dfs(s[x].ch[0]),dfs(s[x].ch[1]);
}
int main()
{
n=rd();
int i,a,b;
for(i=1;i<=n;i++)
{
v[i]=rd(),X[i]=rd(),Y[i]=rd();
add(i,i,X[i],Y[i]);
}
m=rd();
for(i=1;i<=m;i++)
{
a=rd(),b=rem(a,X[a],Y[a]);
X[a]=rd(),Y[a]=rd(),add(a,b,X[a],Y[a]);
}
for(i=1;i<=n;i++)
{
a=point(X[i],Y[i]);
if(!vis[a]) vis[a]=1,dfs(rt[a]);
}
for(i=1;i<=n;i++) printf("%lld\n",(ll)s1[i]*s2[i]);
return 0;
}//5 1 1 1 3 1 2 4 4 4 2 0 1 2 2 3 5 1 1 2 2 4 4 2 4 3 3 0 1 5 0 1
【BZOJ2827】千山鸟飞绝 hash+堆+SBT的更多相关文章
- bzoj2827: 千山鸟飞绝 平衡树 替罪羊树 蜜汁标记
这道题首先可以看出坐标没有什么意义离散掉就好了. 然后你就会发现你要每次都更改坐标,而一旦更改受影响的是坐标里的所有数,要是一个一个的改,会不可描述. 所以换个视角,我们要找的是某只鸟所到每个坐标时遇 ...
- 【BZOJ1125】[POI2008]Poc hash+map+SBT
[BZOJ1125][POI2008]Poc Description n列火车,每条有l节车厢.每节车厢有一种颜色(用小写字母表示).有m次车厢交换操作.求:对于每列火车,在交换车厢的某个时刻,与其颜 ...
- BZOJ2827: 千山鸟飞绝
离散化坐标,每个坐标开一棵以鸟的编号为关键字的平衡树.每次插入时打2个标记,同时更新自身.这个方法比较显然,而且好写.正解好像用很迷的方法乱搞了一波,然后用线段树不打标记就做出来了,并不会. trea ...
- OI分类
黑字:认识 红字:要学 未添加:要学 ├─模拟├─字符串│ ├─字符串基础│ ├─manacher│ ├─kmp│ ├─trie│ ├─ac自动机│ ├─后缀数组( ...
- 程序员编程艺术:第三章续、Top K算法问题的实现
程序员编程艺术:第三章续.Top K算法问题的实现 作者:July,zhouzhenren,yansha. 致谢:微软100题实现组,狂想曲创作组. 时间:2011年05月08日 ...
- 海量数据面试题----分而治之/hash映射 + hash统计 + 堆/快速/归并排序
1.从set/map谈到hashtable/hash_map/hash_set 稍后本文第二部分中将多次提到hash_map/hash_set,下面稍稍介绍下这些容器,以作为基础准备.一般来说,STL ...
- bzoj4165: 矩阵(堆+hash)
求第k大用堆维护最值并出堆的时候扩展的经典题... 因为只有正数,所以一个矩阵的权值肯定比它的任意子矩阵的权值大,那么一开始把所有满足条件的最小矩阵加进堆里,弹出的时候上下左右扩展一行加进堆,用has ...
- day 1 堆 hash 线段树 树状数组 冰茶姬 字典树 二叉查找树
来郑州的第二天,早上开始也没说什么就说了些注意安全,各种各样的注意安全... 冰茶姬: 原来再打食物链时看了一下冰茶姬,只注意了路径压缩,没想到还有什么按秩排序但确实快了不少... int find( ...
- 栈 队列 hash表 堆 算法模板和相关题目
什么是栈(Stack)? 栈(stack)是一种采用后进先出(LIFO,last in first out)策略的抽象数据结构.比如物流装车,后装的货物先卸,先转的货物后卸.栈在数据结构中的地位很重要 ...
随机推荐
- 温故而知新 js 点击空白处关闭气泡
诀窍1:使用el.contains(e) 来判断点击的区域诀窍2:使用mouseup 诀窍3:完成之后,移除事件 showpopover (e) { this.popover = !this.popo ...
- mysql在linux7下systemd的相关配置
---- # Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. # # This program ...
- 详解php的安装模式---CGI,FASTCGI,php-fpm,mod_php,mod_cgi,mod_fcgid
1. CGI CGI是通用网关接口,HTTP服务器使用这样的接口程序来和“其他程序”(比如PHP的解释器程序)通讯,这个“其他程序”可以使用任何计算机语言来编写,它通过CGI这个接口从HTTP服务器取 ...
- TRIZ系列-创新原理-17-转变到新维度原理
转变到新维度原理的表述例如以下:1)把物体的动作.布局从一维变成二维.二维变成三维,以此类推 假设物体在本维度上的运动或者定位非常困难.就能够过渡到更高维度上,一般路线为:直线运动--> ...
- ubuntu更新出错--Could not get lock /var/lib/dpkg/lock
ubuntu在vps上安装好后,通常第一个命令是更新系统软件.然而在运行的过程中,却出现这样的错误: E: Could not get lock /var/lib/dpkg/lock - open ( ...
- shell脚本 批量转换目录下文件编码
发布:JB01 来源:脚本学堂 [大 中 小] 分享一例shell脚本,实现可以批量转换目录下的文件编码,很实用的一个小shell,有需要的朋友参考下.原文地址:http://www.jb ...
- 基于FPGA的PCIe接口实现(具体讲解了数据流向)
时间:2014-12-09 来源:西安电子科技大学电子工程学院 作者:姜 宁,陈建春,王 沛,石 婷 摘要 PCI Express是一种高性能互连协议,被广泛应用于网络适配.图形加速器.网络存储.大数 ...
- Qt 插件综合编程-基于插件的OpenStreetMap瓦片查看器client(1)-墨卡托投影与坐标控制
(相关的代码能够从https://github.com/goldenhawking/mercator.qtviewer.git直接克隆) 我们如今是准备做一个C/S架构的地图显示控件.就必定牵扯到坐标 ...
- form之action的绝对路径与相对路径
1.当你的form要提交到你自己的站点之外的URL的时候,就采取绝对路径: <form action="http://www.xxx.yyy:zzzz/mmm/nn/kkk.jsp&q ...
- python右键不显示IDLE
打开注册表,在HKEY_CLASSES_ROOT\SystemFileAssociations中添加.py\shell\Edit with IDLE\command(右键 ->‘新建’ -> ...