Uoj #274. 【清华集训2016】温暖会指引我们前行 LCT维护边权_动态最小生成树
动态维护一下最小生成树即可.
#include<bits/stdc++.h>
#define ll long long
#define maxn 1000000
#define inf 1000000000000
using namespace std; void setIO(string s)
{
string in=s+".in",out=s+".out";
freopen(in.c_str(),"r",stdin);
// freopen(out.c_str(),"w",stdout);
}
struct Union
{
int p[maxn];
void init()
{
for(int i=0;i<maxn;++i) p[i]=i;
}
int find(int x)
{
return p[x]==x?x:p[x]=find(p[x]);
}
void merge(int a,int b)
{
int x=find(a),y=find(b);
if(x==y) return ;
p[x]=y;
}
}ut;
struct LCT
{
#define lson ch[x][0]
#define rson ch[x][1]
int f[maxn],ch[maxn][2],sta[maxn],rev[maxn];
ll w[maxn],val[maxn],sumv[maxn],minv[maxn]; int isRoot(int x)
{
return !(ch[f[x]][0]==x||ch[f[x]][1]==x);
}
int get(int x)
{
return ch[f[x]][1]==x;
}
void pushdown(int x)
{
if(!x||!rev[x]) return;
mark(lson), mark(rson),rev[x]^=1;
}
void mark(int x)
{
if(!x) return;
swap(lson,rson),rev[x]^=1;
}
void pushup(int x)
{
if(!x) return;
sumv[x]=sumv[lson]+sumv[rson]+val[x];
minv[x]=min(min(minv[lson],minv[rson]),w[x]);
}
void rotate(int x)
{
int old = f[x], fold = f[old], which = get(x);
if(!isRoot(old)) ch[fold][ch[fold][1] == old] = x;
ch[old][which] = ch[x][which ^ 1], f[ch[old][which]] = old;
ch[x][which ^ 1] = old, f[old] = x, f[x] = fold;
pushup(old), pushup(x);
}
void splay(int x)
{
int u=x,v=0,fa;
sta[++v]=u;
while(!isRoot(u)) sta[++v]=f[u],u=f[u];
while(v) pushdown(sta[v--]);
for(u=f[u];(fa=f[x])!=u;rotate(x))
if(f[fa]!=u)
rotate(get(fa)==get(x)?fa:x);
}
void Access(int x)
{
int t=0;
while(x) splay(x),rson=t,pushup(x),t=x,x=f[x];
}
void MakeRoot(int x)
{
Access(x),splay(x), mark(x);
}
void link(int a,int b)
{
MakeRoot(a),f[a]=b;
}
int FindRoot(int x)
{
Access(x), splay(x);
while(lson) x=lson;
return x;
}
void split(int x,int y)
{
MakeRoot(x), Access(y), splay(y);
}
void cut(int a,int b)
{
split(a,b),ch[b][0]=f[a]=0, pushup(b);
}
int find(int x)
{
if(w[x]==minv[x]) return x;
return minv[lson]==minv[x]?find(lson):find(rson);
}
}tree;
int h1[maxn],h2[maxn];
char opt[20];
#define idx(i) (i+n) int main()
{
// setIO("input");
ll t;
int n,m,id,u,v,l,cur;
scanf("%d%d",&n,&m);
for(int i=0;i<=n;++i) tree.w[i]=inf;
tree.minv[0]=inf;
ut.init();
while(m--)
{
scanf("%s",opt);
switch(opt[0])
{
case 'f' :
{
scanf("%d%d%d%lld%d",&id,&u,&v,&t,&l);
++id,++u,++v;
h1[cur=idx(id)]=u,h2[idx(id)]=v;
if(ut.find(u)!=ut.find(v))
{
ut.merge(u,v);
tree.val[cur]=l,tree.w[cur]=t;
ut.merge(u,cur),ut.merge(v,cur);
tree.link(u,cur), tree.link(v,cur);
}
else
{
tree.split(u,v);
if(tree.minv[v] < t)
{
int k=tree.find(v);
tree.cut(k, h1[k]), tree.cut(k, h2[k]);
tree.val[cur=idx(id)]=l,tree.w[cur]=t;
ut.merge(u,cur), ut.merge(v,cur);
tree.link(u,cur),tree.link(v,cur);
}
}
break;
}
case 'm' :
{
scanf("%d%d",&u,&v);
++u,++v;
if(ut.find(u)!=ut.find(v))
{
printf("-1\n");
}
else
{
tree.split(u,v), printf("%lld\n",tree.sumv[v]);
}
break;
}
case 'c' :
{
scanf("%d%d",&id,&l);
++id;
tree.Access(cur=idx(id)),tree.val[cur]=l,tree.pushup(cur);
break;
}
}
}
return 0;
}
Uoj #274. 【清华集训2016】温暖会指引我们前行 LCT维护边权_动态最小生成树的更多相关文章
- [UOJ#274][清华集训2016]温暖会指引我们前行
[UOJ#274][清华集训2016]温暖会指引我们前行 试题描述 寒冬又一次肆虐了北国大地 无情的北风穿透了人们御寒的衣物 可怜虫们在冬夜中发出无助的哀嚎 “冻死宝宝了!” 这时 远处的天边出现了一 ...
- [清华集训2016]温暖会指引我们前行——LCT+最大生成树
题目链接: [清华集训2016]温暖会指引我们前行 题目大意:有$n$个点$m$次操作,每次操作分为三种:1.在$u,v$两点之间连接一条编号为$id$,长度为$l$,温度为$t$的边.2.查询从$u ...
- UOJ_274_[清华集训2016]温暖会指引我们前行_LCT
UOJ_274_[清华集训2016]温暖会指引我们前行_LCT 任务描述:http://uoj.ac/problem/274 本题中的字典序不同在于空串的字典序最大. 并且题中要求排序后字典序最大. ...
- 【bzoj4736/uoj#274】[清华集训2016]温暖会指引我们前行 语文题+LCT
题目描述 http://uoj.ac/problem/274 题解 语文题+LCT 对于这种语文题建议还是自己读题好一些... 读懂题后发现:由于温度互不相同,最大生成树上的路径必须走(不走的话温度大 ...
- UOJ274 [清华集训2016] 温暖会指引我们前行 【LCT】【最大生成树】
题目分析: 差评,最大生成树裸题.hack数据还卡常. 代码: #include<bits/stdc++.h> using namespace std; ; struct LCT{ ],d ...
- UOJ #274. 【清华集训2016】温暖会指引我们前行 [lct]
#274. [清华集训2016]温暖会指引我们前行 题意比较巧妙 裸lct维护最大生成树 #include <iostream> #include <cstdio> #incl ...
- 【UOJ274】【清华集训2016】温暖会指引我们前行 LCT
[UOJ274][清华集训2016]温暖会指引我们前行 任务描述 虽然小R住的宿舍楼早已来了暖气,但是由于某些原因,宿舍楼中的某些窗户仍然开着(例如厕所的窗户),这就使得宿舍楼中有一些路上的温度还是很 ...
- bzoj 4736 /uoj274【清华集训2016】温暖会指引我们前行 lct
[清华集训2016]温暖会指引我们前行 统计 描述 提交 自定义测试 寒冬又一次肆虐了北国大地 无情的北风穿透了人们御寒的衣物 可怜虫们在冬夜中发出无助的哀嚎 “冻死宝宝了!” 这时 远处的天边出现了 ...
- BZOJ 4736 温暖会指引我们前行 LCT+最优生成树+并查集
题目链接:http://uoj.ac/problem/274 题意概述: 没什么好概述的......概述了题意就知道怎么做了......我懒嘛 分析: 就是用lct维护最大生成树. 然后如果去UOJ上 ...
随机推荐
- 用keil编写的 C51错误 *** WARNING L1: UNRESOLVED EXTERNAL SYMBOL SYMBOL: ?C_START
可能原因: 替换工程的文件未先 remove该文件. 正常替换文件步骤: 1. 右键 欲 替换的文件,remove XXXXX.c from build ----> remove XXXX ...
- K - 贪心 基础
FatMouse prepared M pounds of cat food, ready to trade with the cats guarding the warehouse containi ...
- [bzoj3872][Poi2014]Ant colony_树形dp
Ant colony bzoj-3872 Poi-2014 题目大意:说不明白.....题目链接 注释:略. 想法:两个思路都行. 反正我们就是要求出每个叶子节点到根节点的每个路径权值积. 可以将边做 ...
- MyBatis 3模糊查询(like)写法(转)
说明:以下写法可以同时支持XML和注解的形式. 1.SQL中字符串拼接 SELECT * FROM tableName WHERE name LIKE CONCAT(CONCAT('%', #{tex ...
- c++ 双冒号的作用
转:原文:http://www.cnblogs.com/charley_yang/archive/2011/02/24/1964217.html #define FLY 10 #line 100 &q ...
- Golang Template source code analysis(Parse)
This blog was written at go 1.3.1 version. We know that we use template thought by followed way: fun ...
- 转:Java 计算2个时间相差多少年,多少个月,多少天的几种方式
日期比较对象 DayCompare 代码用到了 lombok ,如果不用,其实就是把getter / setter方法自己写一遍,还有构造方法. @Data @Builder public stat ...
- hdoj--5104--Primes Problem(素数打表)
Primes Problem Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) T ...
- 0502 php简单了解
准备工作: 安装好wamp,配置站点:apache2.4.9\conf\httpd.conf 注意事项: 1.必须有分号 2.不要有无意义空行,会以空格形式输出. 3.变量,关键字(if,for..) ...
- bzoj 1503郁闷的出纳员(splay)
1503: [NOI2004]郁闷的出纳员 Time Limit: 5 Sec Memory Limit: 64 MBSubmit: 11759 Solved: 4163[Submit][Stat ...