[ZJOI2012]网络
嘟嘟嘟
今天复习lct,趁着还年轻多写点数据结构。
首先不得不吐槽一下,题面好长啊……
通过观察发现,\(c \leqslant 10\)。那么就可以暴力的建10棵lct。
接下来说下具体做法:
1.修改点权
在\(c\)棵lct上都改一遍。
2.修改边的颜色。
设原来的颜色为\(i\),改成\(j\)。那么相当于在第\(i\)棵lct上断边,在第\(j\)棵lct上连边。
为了记录每一条边的颜色,我开了一个map<pair<int, int>, int>。这样也能很方便的判断这条边是否存在了。
同时再维护一个cnt数组,cnt[x][i]表示节点\(x\)颜色为\(i\)的出边有多少条,这样Error 1就可以判断了。
至于如何判断Error 2,其实就是判断在第\(j\)棵lct上\(x\)和\(y\)是否联通。
3.查询
没啥好说的。
写起来似乎也不难,记得splay的数组开的是两维就行了。
坑点在于可能会改成相同的颜色,要特判。我虽然想到了,但是忘了这样还得输出Success.,而不是continue……
改完后又因为后面没加“.”调了半天……咋这么zz呢……
#include<cstdio>
#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstring>
#include<cstdlib>
#include<cctype>
#include<vector>
#include<stack>
#include<queue>
#include<map>
using namespace std;
#define enter puts("")
#define space putchar(' ')
#define Mem(a, x) memset(a, x, sizeof(a))
#define In inline
typedef long long ll;
typedef double db;
const int INF = 0x3f3f3f3f;
const db eps = 1e-8;
const int maxn = 1e4 + 5;
inline ll read()
{
ll ans = 0;
char ch = getchar(), last = ' ';
while(!isdigit(ch)) last = ch, ch = getchar();
while(isdigit(ch)) ans = (ans << 1) + (ans << 3) + ch - '0', ch = getchar();
if(last == '-') ans = -ans;
return ans;
}
inline void write(ll x)
{
if(x < 0) x = -x, putchar('-');
if(x >= 10) write(x / 10);
putchar(x % 10 + '0');
}
int n, m, c, K;
int cnt[maxn][12];
#define pr pair<int, int>
#define mp make_pair
map<pr, int> Map;
#define ls t[col][now].ch[0]
#define rs t[col][now].ch[1]
struct Tree
{
int ch[2], fa;
int val, Max, rev;
}t[12][maxn];
In void change(int now, int col)
{
swap(ls, rs); t[col][now].rev ^= 1;
}
In void pushdown(int now, int col)
{
if(t[col][now].rev)
{
if(ls) change(ls, col);
if(rs) change(rs, col);
t[col][now].rev = 0;
}
}
In void pushup(int now, int col)
{
t[col][now].Max = max(max(t[col][ls].Max, t[col][rs].Max), t[col][now].val);
}
In bool n_root(int now, int col)
{
return t[col][t[col][now].fa].ch[0] == now || t[col][t[col][now].fa].ch[1] == now;
}
In void rotate(int x, int col)
{
int y = t[col][x].fa, z = t[col][y].fa, k = (t[col][y].ch[1] == x);
if(n_root(y, col)) t[col][z].ch[t[col][z].ch[1] == y] = x; t[col][x].fa = z;
t[col][y].ch[k] = t[col][x].ch[k ^ 1]; t[col][t[col][y].ch[k]].fa = y;
t[col][x].ch[k ^ 1] = y; t[col][y].fa = x;
pushup(y, col), pushup(x, col);
}
int st[maxn], top = 0;
In void splay(int x, int col)
{
int y = x;
st[top = 1] = y;
while(n_root(y, col)) y = t[col][y].fa, st[++top] = y;
while(top) pushdown(st[top--], col);
while(n_root(x, col))
{
int y = t[col][x].fa, z = t[col][y].fa;
if(n_root(y, col)) rotate(((t[col][z].ch[0] == y) ^ (t[col][y].ch[0] == x)) ? x : y, col);
rotate(x, col);
}
}
In void access(int x, int col)
{
int y = 0;
while(x)
{
splay(x, col); t[col][x].ch[1] = y;
pushup(x, col);
y = x; x = t[col][x].fa;
}
}
In void make_root(int x, int col)
{
access(x, col); splay(x, col);
change(x, col);
}
In int find_root(int x, int col)
{
access(x, col); splay(x, col);
while(t[col][x].ch[0]) pushdown(x, col), x = t[col][x].ch[0];
return x;
}
In void split(int x, int y, int col)
{
make_root(x, col); access(y, col);
splay(y, col);
}
In bool Link(int x, int y, int col)
{
make_root(x, col);
if(find_root(y, col) == x) return 0;
t[col][x].fa = y;
++cnt[x][col], ++cnt[y][col];
return 1;
}
In void Cut(int x, int y, int col)
{
make_root(x, col);
if(find_root(y, col) == x && t[col][x].fa == y && !t[col][x].ch[1])
t[col][x].fa = t[col][y].ch[0] = 0, pushup(y, col);
--cnt[x][col], --cnt[y][col];
}
In int query(int x, int y, int col)
{
make_root(x, col);
if(find_root(y, col) ^ x) return -1;
access(y, col), splay(y, col);
return t[col][y].Max;
}
int main()
{
//freopen("ha.in", "r", stdin);
//freopen("ha.out", "w", stdout);
n = read(), m = read(), c = read(), K = read();
for(int i = 1; i <= n; ++i)
{
int x = read();
for(int j = 0; j < c; ++j) t[j][i].val = t[j][i].Max = x;
}
for(int i = 1; i <= m; ++i)
{
int x = read(), y = read(), w = read();
if(x > y) swap(x, y);
Map[mp(x, y)] = w;
Link(x, y, w);
}
for(int i = 1; i <= K; ++i)
{
int op = read();
if(op == 0)
{
int x = read(), y = read();
for(int j = 0; j < c; ++j) splay(x, j), t[j][x].val = t[j][x].Max = y;
}
else if(op == 1)
{
int x = read(), y = read(), w = read();
if(x == y) {continue;}
if(x > y) swap(x, y);
if(!Map.count(mp(x, y))) puts("No such edge.");
else
{
int col = Map[mp(x, y)];
if(col == w) puts("Success.");
else if(cnt[x][w] >= 2 || cnt[y][w] >= 2) puts("Error 1.");
else if(!Link(x, y, w)) puts("Error 2.");
else
{
puts("Success.");
Cut(x, y, col);
Map[mp(x, y)] = w;
}
}
}
else
{
int w = read(), x = read(), y = read();
write(query(x, y, w)), enter;
}
}
return 0;
}
[ZJOI2012]网络的更多相关文章
- 洛谷 P2173 [ZJOI2012]网络 解题报告
P2173 [ZJOI2012]网络 题目描述 有一个无向图G,每个点有个权值,每条边有一个颜色.这个无向图满足以下两个条件: 对于任意节点连出去的边中,相同颜色的边不超过两条. 图中不存在同色的环, ...
- bzoj 2816: [ZJOI2012]网络 (LCT 建多棵树)
链接:https://www.lydsy.com/JudgeOnline/problem.php?id=2816 题面: http://www.lydsy.com/JudgeOnline/upload ...
- 【刷题】BZOJ 2816 [ZJOI2012]网络
Description http://www.lydsy.com/JudgeOnline/upload/zjoi2012.pdf Solution 维护树上联通块的信息,支持动态加边删边 LCT 总共 ...
- bzoj2816 [ZJOI2012]网络
Description http://www.lydsy.com/JudgeOnline/upload/zjoi2012.pdf 正解:$link-cut \ tree$. $LCT$板子题,直接维护 ...
- bzoj 2816: [ZJOI2012]网络(splay)
[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=2816 [题意] 给定一个无向图,满足条件:从一个节点出发的同色边不超过2条,且不存在同 ...
- BZOJ.2816.[ZJOI2012]网络(LCT)
题目链接 BZOJ 洛谷 对每种颜色维护一个LCT,保存点之间的连接关系. 修改权值A[x]和所有Max[x]都要改: 修改边的颜色先枚举所有颜色,看是否在某种颜色中有边,然后断开.(枚举一遍就行啊 ...
- Luogu 2173 [ZJOI2012]网络 - LCT
Solution $LCT$ 直接上$QuQ$ 注意$cut$ 完 需要 $d[u + c * N]--$ 再 $link$, 不然会输出Error 1的哦 Code #include<cs ...
- bzoj千题计划223:bzoj2816: [ZJOI2012]网络
http://www.lydsy.com/JudgeOnline/problem.php?id=2816 每种颜色搞一个LCT 判断u v之间有边直接相连: 如果u和v之间有边相连,那么他们的深度相差 ...
- ZJOI2012 网络——LCT相关题目
有一个无向图G,每个点有个权值,每条边有一个颜色.这个无向图满足以下两个条件: 对于任意节点连出去的边中,相同颜色的边不超过两条. 图中不存在同色的环,同色的环指相同颜色的边构成的环. 在这个图上,你 ...
随机推荐
- 学习HttpClient,从两个小例子开始
前言 HTTP(Hyper-Text Transfer Protocol,超文本传输协议)在如今的互联网也许是最重要的协议,我们每天做的很多事情都与之有关,比如,网上购物.刷博客.看新闻等.偶尔你的上 ...
- Java五种基本的Annotation,提高程序的可读性
从JDK5开始,Java增加了对元数据的支持,也就是Annotation(即注解也被翻译为注释). 这里的Annotation和普通的注释有一定的区别,它是代码中的特殊标记,这些标记可以在编译.类加载 ...
- CSS3的媒体查询(Media Queries)与移动设备显示尺寸大全
媒体查询介绍 我今天就总结一下响应式设计的核心CSS技术Media(媒体查询器)的用法. 先看一个简单的例子: <link rel="stylesheet" media=&q ...
- CSS3动画:流彩文字效果+图片模糊效果+边框伸展效果实现
前言 首先第一步,先布局html代码如下: <div class="wrap"> <img src="images/1.jpg" class= ...
- Elasticsearch Search APIs
Elasticsearch Search APIs By:授客 QQ:1033553122 1. 搜索 1 在单个索引的所有类型中搜索 1 在单个索引的指定类型中搜索 1 在多个指定的索引中搜索 1 ...
- mysql左连接
举个例子说明: select d.id, d.uid,d.username,d.dateline, d.message,d.replynum, c.picid, c.filename from doi ...
- Android--手势及触摸事件的注意点(一)
实现onInterceptTouchEvent方法可以用来拦截父ViewGroup传递下来的所有触屏事件,可以将所有触屏事件交由此ViewGroup自身的onTouchEvent来处理,也可以继续传递 ...
- Docker Compose 安装 on centos7
本文演示如何在CentOS7上安装Docker Compose. 1 在线安装 1.1 下载安装包 $ curl -L https://github.com/docker/compose/releas ...
- python使用sax实现xml解析
之前在使用xml解析的时候,在网上搜了很多教程,最终没有能按照网上的教程实现需求. 所以呢,只好自己去看源码,在sax的__init__.py下看到这么一段代码: 1 def parse(source ...
- setfont()函数
设计字体显示效果 Font mf = new Font(String 字体,int 风格,int 字号); 字体:TimesRoman, Courier, Arial等 风格:三个常量 lFont.P ...