[Luogu3769][CH弱省胡策R2]TATT
题意
其实就是四维偏序。
sol
第一维排序,然后就只需要写个\(3D-tree\)了。
据说\(kD-tree\)的单次查询复杂度是\(O(n^{1-\frac{1}{k}})\)。所以这里的复杂度是\(O(n^{\frac{5}{3}})\)。
code
#include<cstdio>
#include<algorithm>
using namespace std;
int gi()
{
int x=0,w=1;char ch=getchar();
while ((ch<'0'||ch>'9')&&ch!='-') ch=getchar();
if (ch=='-') w=0,ch=getchar();
while (ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+ch-'0',ch=getchar();
return w?x:-x;
}
#define ls t[o].ch[0]
#define rs t[o].ch[1]
#define cmin(a,b) (a>b?a=b:a)
#define cmax(a,b) (a<b?a=b:a)
const int N = 5e4+5;
int n,D,root,fa[N],pos[N],lim[2][3],ans,Ans;
struct node{
int d[4],id;
bool operator < (const node &b) const
{return d[D]<b.d[D];}
}a[N];
struct kdtree{int d[3],Min[3],Max[3],ch[2],v,mx;}t[N];
void mt(int x,int y)
{
for (int i=0;i<3;++i)
cmin(t[x].Min[i],t[y].Min[i]),cmax(t[x].Max[i],t[y].Max[i]);
}
int build(int l,int r,int d)
{
D=d;int o=l+r>>1;
nth_element(a+l,a+o,a+r+1);
for (int i=0;i<3;++i)
t[o].d[i]=t[o].Min[i]=t[o].Max[i]=a[o].d[i];
pos[a[o].id]=o;
if (l<o) fa[ls=build(l,o-1,(d+1)%3)]=o,mt(o,ls);
if (o<r) fa[rs=build(o+1,r,(d+1)%3)]=o,mt(o,rs);
return o;
}
bool whole(int o)
{
for (int i=0;i<3;++i)
if (t[o].Min[i]<lim[0][i]||t[o].Max[i]>lim[1][i])
return false;
return true;
}
bool in(int o)
{
for (int i=0;i<3;++i)
if (t[o].d[i]<lim[0][i]||t[o].d[i]>lim[1][i])
return false;
return true;
}
bool empty(int o)
{
for (int i=0;i<3;++i)
if (t[o].Min[i]>lim[1][i]||t[o].Max[i]<lim[0][i])
return true;
return false;
}
void query(int o)
{
if (t[o].mx<=ans) return;
if (whole(o)) {cmax(ans,t[o].mx);return;}
if (empty(o)) return;
if (in(o)) cmax(ans,t[o].v);
if (ls) query(ls);if (rs) query(rs);
}
bool cmp(node i,node j)
{
for (int k=3;~k;--k)
if (i.d[k]^j.d[k])
return i.d[k]<j.d[k];
return i.id<j.id;
}
int main()
{
n=gi();
for (int i=1;i<=n;++i)
{
for (int j=0;j<4;++j) a[i].d[j]=gi();
a[i].id=i;
}
root=build(1,n,0);
sort(a+1,a+n+1,cmp);
for (int i=1;i<=n;++i)
{
for (int j=0;j<3;++j) lim[0][j]=0,lim[1][j]=a[i].d[j];
ans=0;query(root);++ans;cmax(Ans,ans);
t[pos[a[i].id]].v=ans;
for (int p=pos[a[i].id];p;p=fa[p]) cmax(t[p].mx,ans);
}
printf("%d\n",Ans);return 0;
}
[Luogu3769][CH弱省胡策R2]TATT的更多相关文章
- luoguP3769 [CH弱省胡策R2]TATT
luoguP3769 [CH弱省胡策R2]TATT PS:做这题前先切掉 P4148简单题,对于本人这样的juruo更助于理解,当然dalao就当练练手吧 题目大意: 现在有n个四维空间中的点,请求出 ...
- [CH弱省胡策R2]TATT
description 洛谷 data range \[ n\le 5\times 10^4\] solution 这就是四维偏序了... 好象时间复杂度是\(O(n^{\frac{5}{3}})\) ...
- 【题解】[CH弱省胡策R2]TATT
本蒟蒻第一道\(K-D-Tree\)维护\(dp\) Question 题目大意:求一条路径,使得其四个维度单调不降. 先排序消掉一维再说. 对于每一个点,初始的时候绝对长度是1啊.于是,先赋值一个1 ...
- 洛谷3769[CH弱省胡策R2]TATT (KDTree)(四维LIS)
真是一个自闭的题目(调了一个上午+大半个下午) 从\(WA\)到\(WA+TLE\)到\(TLE\)到\(AC\) 真的艰辛. 首先,这个题,我们可以考虑直接上四维KDTree来解决. 对于kdtre ...
- 【弱省胡策】Round #5 Count
[弱省胡策]Round #5 Count 太神仙了. \(DP\)做法 设\(f_{n,m,d,k}\)表示\(n*m\)的矩阵,填入第\(k\)个颜色,并且第\(k\)个颜色最少的一列上有\(d\) ...
- 弱省胡策 Magic
弱省胡策 Magic 求\(n\)个点\(n\)的条边的简单联通图的个数. 毒瘤,还要写高精. 我们枚举环的大小\(k\),\(\displaystyle ans=\sum_{k=3}^nC_n^k ...
- 【ContestHunter】【弱省胡策】【Round0】(A)&【Round1】(B)
DP+容斥原理or补集转化?/KD-Tree 唔……突然发现最早打的两场(打的最烂的两场)没有写记录……(太烂所以不忍记录了吗... 还是把搞出来了的两道题记录一下吧= =勉强算弥补一下缺憾…… Ro ...
- 【ContestHunter】【弱省胡策】【Round3】(C)
容斥原理+Fib Orz HE的神犇们 蒟蒻只能改出来第三题……实在太弱 官方题解:http://pan.baidu.com/s/1o6MdtQq fib的神奇性质……还有解密a[i]的过程……这里就 ...
- 【ContestHunter】【弱省胡策】【Round2】
官方题解:http://wyfcyx.is-programmer.com/posts/95490.html A 目前只会30分的暴力……DP好像很神的样子0.0(听说可以多次随机强行算? //Roun ...
随机推荐
- poj2250
#include<string.h> #include<stdio.h> #include<algorithm> #include<vector> #i ...
- Apache 错误整理
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using localho ...
- SpringBoot服务器压测对比(jetty、tomcat、undertow)
1.本次对比基础环境信息如下: springboot版本1.5.10 centos虚机4c6G,版本7.4 centos实机2u16c40G,版本7.4,虚机运行在实机上 ab版本2.3 jprofi ...
- 20165101刘天野 2018-2019-2《网络对抗技术》Exp2 后门原理与实践
目录 20165101刘天野 2018-2019-2<网络对抗技术>Exp2 后门原理与实践 1. 实验内容 1.1 使用netcat获取主机操作Shell,cron启动 1.2 使用so ...
- linux根分区满了如何处理,查找大文件方法
一:如果linux根分区使用量达到100%,会造成如下现象: root不能登录 系统不能正常启动 二:通过命令查找根分区内的大文件 du -sh /* 2>/dev/null | sort -h ...
- How to create and manage configuration backups in Internet Information Services 7.0
https://support.microsoft.com/en-us/help/954872/how-to-create-and-manage-configuration-backups-in-in ...
- quartz(7)-源码分析
定时器启动 上图通过spring加载quartz <bean id="scheduler" class="org.springframework.schedulin ...
- 一篇看懂++i i++
/** * @Title:Test03 * @Description: * @author Crazy-ZJ * @data 2017年9月28日上午9:38:00 * @book 疯狂java讲义( ...
- MyEclipse 为xml添加本地的dtd文件
在使用Eclipse或MyEclipse编辑XML文件的时候经常会碰到编辑器不提示的现象,这常常是因为其xml文件需要参考的DTD文件找不到,还有因为网络的问题不能及时提示而产生的.Eclipse/M ...
- JSON和GSON的使用
JSONObject 处理问题 相关博客参考:https://www.cnblogs.com/free-dom/p/5801866.html json-lib 和google gson 的使用 Tor ...