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上 ...
随机推荐
- Oracle-统计数据库表数据总数量
create or replace procedure prc_table_count(p_flag out varchar2) AS TCOUNT number; SCOUNT number; CO ...
- (二)模板引擎之Velocity脚本基本的语法全
velocity velocity三种reference 变量:对java对象的一种字符串化表示,返回值调用了java的toString()方法的结果. 方法:调用的是对象的某个方法. ...
- [自己动手改wordpress.1]wordpress的插件User-Access-Manager在新的php版本号里面无法执行的bug.
近期同事在玩wp, 就顺带一起看了下. 她说插件有个不能用. 是一个叫User Access Manager 的插件 详细表现就是在后台填好相应的roles角色的时候, 点提交就会跳到一个错误的页面 ...
- CSS3 网格布局(grid layout)基础知识 - 隐式网格自己主动布局(grid-auto-rows/grid-auto-columns/grid-auto-flow)
网格模板(grid-template)属性及其普通写法(longhands)定义了一个固定数量的轨道.构成显式网格. 当网格项目定位在这些界限之外.网格容器通过添加隐式网格线生成隐式网格轨道. 这些隐 ...
- jxl 导入导出Excel(有模板)
1.导入 @Override public String importBusinessScope(File file, String unit_id) throws Exception { Workb ...
- mysql数据库字符编码修改
mysql数据库字符编码修改 修改数据库的字符集mysql>use mydb mysql>alter database mydb character set utf8; 创建数据库指定数据 ...
- win7下code::blocks开发环境
一.环境配置步骤: 下载安装code::blocks; 下载安装MinGW; 在complier settings中, Toolchain executables选择MinGW的安装路径. 完成安装. ...
- Android WiFi开发教程(二)——WiFi的搜索和连接
在上一篇中我们介绍了WiFi热点的创建和关闭,如果你还没阅读过,建议先阅读上一篇文章Android WiFi开发教程(一)——WiFi热点的创建与关闭. 本章节主要继续介绍WiFi的搜索和连接. Wi ...
- UESTC--1253--阿里巴巴和n个大盗 (博弈)
阿里巴巴和n个大盗 Time Limit: 1000MS Memory Limit: 65535KB 64bit IO Format: %lld & %llu Submit St ...
- 机器学习——Day 1 数据预处理
写在开头 由于某些原因开始了机器学习,为了更好的理解和深入的思考(记录)所以开始写博客. 学习教程来源于github的Avik-Jain的100-Days-Of-MLCode 英文版:https:// ...