博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
可持久化并查集(草稿)
阅读量:5292 次
发布时间:2019-06-14

本文共 831 字,大约阅读时间需要 2 分钟。

#include
#define fi first#define se second#define INF 0x3f3f3f3f#define LNF 0x3f3f3f3f3f3f3f3f#define fio ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)#define pqueue priority_queue#define NEW(a,b) memset(a,b,sizeof(a))const double pi=4.0*atan(1.0);const double e=exp(1.0);const int maxn=4e5+8;typedef long long LL;typedef unsigned long long ULL;const LL mod=998244353;const ULL base=1e7+7;const int maxp=26+5;using namespace std;struct Pus{ struct node{ int l,r,fa,dep; }tr[maxn*30]; int root[maxn*30]; int cnt; void build(int &rt,int l,int r){ rt=++cnt; if(l==r) {tr[rt].fa=l;return ;} int mid=(l+r)>>1; build(tr[rt].l,l,mid); build(tr[rt].r,mid+1,r); } void Merge(){ }};int main(){}

 

转载于:https://www.cnblogs.com/Profish/p/11518722.html

你可能感兴趣的文章
随机颜色值
查看>>
每日一库:Modernizr.js,es5-shim.js,es5-safe.js
查看>>
目录相关的操作
查看>>
解决虚拟机vmware安装64位系统“此主机支持 Intel VT-x,但 Intel VT-x 处于禁用状态”的问题...
查看>>
C++----练习--引用头文件
查看>>
11.基本包装类型
查看>>
ajax连接服务器框架
查看>>
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
利用maven管理项目之POM文件配置
查看>>
用HttpCombiner来减少js和css的请问次数
查看>>
FUSE-用户空间文件系统
查看>>
将tiff文件转化为jpg文件并保存
查看>>
ubuntu 16.04 开机脚本
查看>>
 VS2012 C#调用C++ dll
查看>>
TCL:表格(xls)中写入数据
查看>>
SQL SERVER 2005中如何获取日期(一个月的最后一日、一年的第一日等等)
查看>>
django 学习笔记(转)
查看>>
控制台程序秒变Windows服务(Topshelf)
查看>>
字节流与字符流的区别详解
查看>>
20141026--娱乐-箱子
查看>>