题目链接

传送门

题意

给你一棵树,然后把这棵树复制\(k\)次,然后再添加\(m\)条边,然后给你起点和终点,问你起点到终点的最短路。

思路

由于将树复制\(k\)遍后结点个数高达\(10^{10}\)个,因此不能直接复制跑。

我们注意到\(m\leq 50000\),那么与这\(m\)条边有关的结点最多只有\(2m\)个(记作关键点),那么我们可以考虑把这些点抠出来跑最短路,不同版本之间的点的边由于题目给的\(m\)条边因此不同版本的两结点之间的距离就是\(1\),但是同一版本两结点之间的该怎么办呢?

直接暴力枚举同一版本中关键点之间的距离很容易退化到\(4m^2\),因此需要考虑其他的方法,这个时候就引入了虚树,将每个版本的树重构建虚树,虚树上的边的长度就是原树上这两点之间的最短距离。

虚树学习博客及模板可以看这篇博客:博客

最后我们把所有版本上的虚树上的边和题目给的\(m\)条边抠出来重新构成一张图,然后直接跑最短路就行。

代码

#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <bitset>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std; typedef long long LL;
typedef pair<LL, LL> pLL;
typedef pair<LL, int> pLi;
typedef pair<int, LL> pil;;
typedef pair<int, int> pii;
typedef unsigned long long uLL; #define fi first
#define se second
#define lson (rt<<1)
#define rson (rt<<1|1)
#define lowbit(x) x&(-x)
#define name2str(name) (#name)
#define bug printf("*********\n")
#define debug(x) cout<<#x"=["<<x<<"]" <<endl
#define FIN freopen("D://Code//in.txt","r",stdin) const double eps = 1e-8;
const int mod = 1000000007;
const int maxn = 500000 + 7;
const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3fLL; int n, m, k, tot, id, s, x, t, y, cnt;
int head[maxn], dfn[maxn];
vector<int> has[maxn];
unordered_map<LL,int> mp; int getid(int x, int y) {
LL tmp = 1LL * (x - 1) * n + y;
if(mp.count(tmp)) return mp[tmp];
else return mp[tmp] = ++id;
} struct edge {
int v, w, next;
}ed[maxn]; void add(int u, int v, int w) {
ed[tot].v = v;
ed[tot].w = w;
ed[tot].next = head[u];
head[u] = tot++;
} struct LCA {
int tot;
int deep[maxn], fa[maxn][30], head[maxn], cost[maxn];
struct edge {
int v, w, next;
}ed[maxn<<1]; void init() {
tot = 0;
for(int i = 0; i <= n; i++) {
head[i] = -1;
cost[i] = deep[i] = 0;
}
} void add(int u, int v, int w) {
ed[tot].v = v;
ed[tot].w = w;
ed[tot].next = head[u];
head[u] = tot++;
} void dfs(int u, int d, int p) {
deep[u] = d, fa[u][0] = p, dfn[u] = ++cnt;
for(int i = head[u]; ~i; i = ed[i].next) {
int v = ed[i].v;
if(v == p) continue;
cost[v] = cost[u] + ed[i].w;
dfs(v, d + 1, u);
}
} void lca() {
for(int i = 1; i <= n; i++) {
for(int j = 1; (1<<j) <= n; j++) {
fa[i][j] = -1;
}
}
for(int j = 1; (1<<j) <= n; j++) {
for(int i = 1; i <= n; i++) {
if(fa[i][j-1] != -1) {
fa[i][j] = fa[fa[i][j-1]][j-1];
}
}
}
} int query(int u, int v) {
if(deep[u] <= deep[v]) swap(u, v);
int k;
for(k = 0; (1 << (1 + k)) <= deep[u]; k++);
for(int i = k; i >= 0; i--) {
if(deep[u] - (1<<i) >= deep[v]) {
u = fa[u][i];
}
}
if(u == v) return u;
for(int i = k; i >= 0; i--) {
if(fa[u][i] != -1 && fa[u][i] != fa[v][i]) {
u = fa[u][i], v = fa[v][i];
}
}
return fa[u][0];
} int dis(int u, int v) {
return cost[u] + cost[v] - 2 * cost[query(u, v)];
}
}L; bool cmp(int x, int y) {
return dfn[x] < dfn[y];
} int stk[maxn], top; void ins(int id, int x) {
if(top == 1) {
stk[++top] = x;
return;
}
int fa = L.query(x, stk[top]);
if(fa == stk[top]) {
stk[++top] = x;
return;
}
while(top > 1 && dfn[stk[top-1]] >= dfn[fa]) {
int dis = L.dis(stk[top-1], stk[top]);
int p1 = getid(id, stk[top-1]), p2 = getid(id, stk[top]);
add(p1, p2, dis);
add(p2, p1, dis);
--top;
}
if(stk[top] != fa) {
int dis = L.dis(fa, stk[top]);
int p1 = getid(id, fa), p2 = getid(id, stk[top]);
add(p1, p2, dis);
add(p2, p1, dis);
stk[top] = fa;
}
stk[++top] = x;
} void build(int id, vector<int>& vec) {
sort(vec.begin(), vec.end());
vec.erase(unique(vec.begin(), vec.end()), vec.end());
sort(vec.begin(), vec.end(), cmp);
stk[top = 1] = 1;
for(decltype(vec.size()) i = 0; i != vec.size(); ++i) ins(id, vec[i]);
while(top > 1) {
int dis = L.dis(stk[top], stk[top-1]);
int p1 = getid(id, stk[top-1]), p2 = getid(id, stk[top]);
add(p1, p2, dis);
add(p2, p1, dis);
--top;
}
} int vis[maxn];
LL dis[maxn]; LL dij(int s, int t) {
memset(dis, INF, sizeof(dis));
priority_queue<pLi, vector<pLi>, greater<pLi> > q;
dis[s] = 0;
q.push({0, s});
while(!q.empty()) {
int u = q.top().se; q.pop();
if(vis[u]) continue;
vis[u] = 1;
for(int i = head[u]; ~i; i = ed[i].next) {
int v = ed[i].v, w = ed[i].w;
if(dis[v] > dis[u] + w) {
dis[v] = dis[u] + w;
q.push({dis[v], v});
}
}
}
if(dis[t] < INF) return dis[t];
else return -1;
} int main() {
#ifndef ONLINE_JUDGE
FIN;
#endif
scanf("%d%d%d", &n, &m, &k);
L.init();
memset(head, -1, sizeof(head));
for(int i = 1; i < n; ++i) {
scanf("%d%d", &x, &y);
L.add(x, y, 1);
L.add(y, x, 1);
}
L.dfs(1, 0, 0);
L.lca();
for(int i = 1; i <= m; ++i) {
scanf("%d%d%d%d", &s, &x, &t, &y);
int p1 = getid(s, x), p2 = getid(t, y);
has[s].emplace_back(x);
has[t].emplace_back(y);
add(p1, p2, 1);
add(p2, p1, 1);
}
scanf("%d%d%d%d", &s, &x, &t, &y);
int p1 = getid(s, x), p2 = getid(t, y);
has[s].emplace_back(x);
has[t].emplace_back(y);
for(int i = 1; i <= k; ++i) build(i, has[i]);
printf("%lld\n", dij(p1, p2));
return 0;
}

良心送分题(牛客挑战赛35E+虚树+最短路)的更多相关文章

  1. fjwc2019 D3T2 送分题

    #185. 「2019冬令营提高组」送分题 这是原题..... P3615 如厕计划 手推一推你发现,显然男性不能多于女性. 然后你或许可以发现一个神奇的性质. 对于每个序列,我们记$M$为$1$,$ ...

  2. 牛客挑战赛 39 牛牛与序列 隔板法 容斥 dp

    LINK:牛牛与序列 (牛客div1的E题怎么这么水... 还没D难. 定义一个序列合法 当且仅当存在一个位置i满足 $a_i>a_,a_j<a_$且对于所有的位置i,$1 \leq a_ ...

  3. 牛客练习赛1 B - 树

    链接:https://www.nowcoder.com/acm/contest/2/B来源:牛客网 题目描述 shy有一颗树,树有n个结点.有k种不同颜色的染料给树染色.一个染色方案是合法的,当且仅当 ...

  4. 牛客挑战赛 30 A 小G数数

    题目链接:https://ac.nowcoder.com/acm/contest/375/A 分析:我写的时候竟然把它当成了DP....... 还建了个结构体DP数组,保存一二位,不知道当时脑子在抽啥 ...

  5. 【牛客挑战赛30D】小A的昆特牌(组合问题抽象到二维平面)

    点此看题面 大致题意: 有\(S\)张无编号的牌,可以将任意张牌锻造成\(n\)种步兵或\(m\)种弩兵中的一种,求最后步兵数量大于等于\(l\)小于等于\(r\)的方案数. 暴力式子 首先我们来考虑 ...

  6. Luogu5611 Ynoi2013 D2T2/牛客挑战赛32F 最大子段和 分块、分治

    传送门 之前一直咕着的,因为一些特殊的原因把这道题更掉算了-- 有一个对值域莫队+线段树的做法,复杂度\(O(n\sqrt{n} \log n)\)然而牛客机子实在太慢了没有希望(Luogu上精细实现 ...

  7. 牛客挑战赛30D 小A的昆特牌(组合数学)

    题面 传送门 题解 很容易写出一个暴力 \[\sum_{i=l}^r {i+n-1\choose n-1}{s-i+m\choose m}\] 即枚举选了多少个步兵,然后用插板法算出方案数 我们对这个 ...

  8. 牛客挑战赛14-F细胞

    https://www.nowcoder.com/acm/contest/81/F 循环卷积的裸题,太久没做FFT了,这么裸的循环卷积都看不出来 注意一下本文的mod 都是指表示幂的模数,而不是NTT ...

  9. 牛客挑战赛33 B-鸽天的放鸽序列

    也许更好的阅读体验 \(\mathcal{Description}\) 定义一个长为\(n\)的\(01\)序列\(A_1, A_2, \dots, A_n\)​的权值为\(\sum_{i=1}^n ...

随机推荐

  1. 洛谷 P1440 求m区间内的最小值

    传送门 思路 由于数据范围很大,所以使用单调队列,和滑动窗口这道题类似 首先第一个数输出\(0\),因为第一个数之前没有数 然后通过样例我们发现,最后一个数并没有派上什么用场,所以循环\(n-1\)轮 ...

  2. [LeetCode] 659. Split Array into Consecutive Subsequences 将数组分割成连续子序列

    You are given an integer array sorted in ascending order (may contain duplicates), you need to split ...

  3. 代码移植的福音 namespace_alias

    命名空间别名 允许程序员定义命名空间的另一个名字 它们常用作长的或嵌套过深的命名空间的简便使用方式. 我们也可以将用在代码移植上,而无需修改源代码的文件所定义的命名空间, 为后面升级merge代码创造 ...

  4. Failed to start LSB: Bring up/down networking 另外一个偏方

    之前网卡启动不了,会是配置不对,或者是移动了虚拟机导致hwaddr发生了变化. 但是今天没改动什么,突然用不了,一直报错Failed to start LSB: Bring up/down .... ...

  5. 迁移历史sql数据

    --select * into Trade2018 from Aozzo_ODS..Trade t1 --where t1.Created<'2019-01-01' --创建索引 --creat ...

  6. 一篇了解大数据架构及Hadoop生态圈

    一篇了解大数据架构及Hadoop生态圈 阅读建议,有一定基础的阅读顺序为1,2,3,4节,没有基础的阅读顺序为2,3,4,1节. 第一节 集群规划 大数据集群规划(以CDH集群为例),参考链接: ht ...

  7. tmp/ccdLyHub.o:(.eh_frame+0x12): undefined reference to `__gxx_personality_v0' collect2: ld returned 1 exit status

    其实就是一个问题,gcc只能编译.c文件,你如果取名为.cpp,那么gcc编译就会就会出现这个错误. 这种情况下: 1.用g++编译(.c 或.c++都可以编译) 2.仍用gcc编译,但是文件后缀改为 ...

  8. Scala Types 2

    存在类型 形式: forSome { type ... } 或 forSome { val ... } 主要为了兼容 Java 的通配符 示例 Array[_] // 等价于 Array[T] for ...

  9. aspect原理分析

    人的记忆能力是有限的,分析.建模与解释能力是无限的 Call Hierarchy isa hook aspect_hookClass() aspect_prepareClassAndHookSelec ...

  10. Blend 硬货 绑定

    原文:Blend 硬货 绑定 开始讲一点 硬技能 怎么用Blend实现绑定 效果 详细说一下绑定 1)default 2)OneTime 3) One Way 4)TwoWay 5) OneWayto ...