[CF 629E] Famil Door and Roads

2023-12-09 03:30
文章标签 cf roads door famil 629e

本文主要是介绍[CF 629E] Famil Door and Roads,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

我选择先写题解再做题。


思考阶段

我们似乎可以考虑计算:总边数 以及 总长度

  • 如果 a a a b b b 有祖先关系?

在这里插入图片描述
总边数: 似乎是 a a a 的子树内方案数乘 b b b 的子树外方案数? (方案数就是子树大小?)
总长度: 这个有点不好算了,难道是: ( a a a 的子树内所有路径总长乘 b b b 的子树外方案数)+( b b b 的子树外所有路径总长乘 a a a 的子树内方案数)+( a − b a-b ab之间链长乘总边数)?

  • 如果 a a a b b b 无祖先关系?
  • 在这里插入图片描述

总边数: 似乎是 a a a 的子树内方案数乘 b b b 的子树内方案数?
总长度: 同样与祖先情况类似吗?难道说是:( a a a 的子树内所有路径总长乘 b b b 的子树内方案数)+( b b b 的子树内所有路径总长乘 a a a 的子树内方案数)+( a − b a-b ab之间链长乘总边数)?

打打试试看!


Code

#include <queue>
#include <stack>
#include <cstdio>
#include <vector>
#include <cstring>
#include <iostream>
#include <algorithm>
#define DB double
#define LL long long
#define MAXN 100005
#define Int register int
#define Mod 1000000007
using namespace std;
inline void Swap(LL &x,LL &y)
{LL Temp = x;x = y;y = Temp;
}
inline LL Abs(LL x)
{if (x > 0)return x;return - x;
}
inline LL Min(LL x,LL y)
{return x < y ? x : y;
}
inline LL Max(LL x,LL y)
{return x > y ? x : y;
}
inline void read(LL &x)
{x = 0;LL f = 1;char s = getchar();while (s < '0' || s > '9'){if (s == '-')f = -1;s = getchar();}while (s >= '0' && s <= '9'){x = (x << 3) + (x << 1) + (s ^ 48);s = getchar();}x *= f;
}
vector<LL> G[MAXN];
LL f[MAXN][18], Dep[MAXN];
void Build(LL x,LL Pre)
{f[x][0] = Pre;Dep[x] = Dep[Pre] + 1;for (Int i = 1; i < 18; ++ i)f[x][i] = f[f[x][i - 1]][i - 1];int l = G[x].size();for (Int i = 0; i < l; ++ i){LL to = G[x][i];if (to == Pre)continue;Build(to, x);}
}
void Adjust(LL &u,LL To)
{for (Int i = 17; i >= 0; -- i)if (Dep[f[u][i]] >= To)u = f[u][i];
}
LL Lca(LL u,LL v)
{if (u == 1 || v == 1)return 1;if (Dep[u] > Dep[v])Adjust(u, Dep[v]);else if (Dep[u] < Dep[v])Adjust(v, Dep[u]);if (u == v)return u;for (Int i = 17; i >= 0; -- i)if (f[u][i] != f[v][i])u = f[u][i], v = f[v][i];return f[u][0];
}
LL Size[MAXN], Length[MAXN], Other[MAXN];
void Prepare(LL x,LL Pre)
{Size[x] = 1;int l = G[x].size();for (Int i = 0; i < l; ++ i){LL to = G[x][i];if (to == Pre)continue;Prepare(to, x);Size[x] += Size[to];Length[x] += Length[to] + Size[to];}
}
LL Zb, Zc;
void GetOther(LL x,LL Pre)
{int l = G[x].size();}
int main()
{LL n, m;read( n ); read( m );for (Int i = 1; i < n; ++ i){LL u, v;read( u ); read( v );G[u].push_back( v );G[v].push_back( u );  }Build(1, 1);Prepare(1, 1);GetOther(1, 1);for (Int i = 1; i <= m; ++ i){Zb = Zc = 0;LL a, b;read( a ); read( b );// 判断是否有祖先关系:LL ta = a, tb = b;if (Dep[ta] > Dep[tb])Adjust(ta, Dep[tb]);else if (Dep[tb] > Dep[ta])Adjust(tb, Dep[ta]);if (ta == tb) // 有祖先关系{if (Dep[a] < Dep[b]) // b是祖先Swap(a, b);Zb = Size[a] * (Size[1] - Size[b] + 1);
//			printf("Cd : %lld %lld %lld\n", Length[1], Length[a], Length[b]);Zc = Length[a] * (Size[1] - Size[b] + 1) + Other[b] * Size[a] + (Dep[a] - Dep[b]) * Size[a] * (Size[1] - Size[b] + 1);}else // 无祖先关系 {LL Mid = Lca(a, b);LL Lc = Dep[a] + Dep[b] - Dep[Mid] * 2;Zb = Size[a] * Size[b];Zc = Length[a] * Size[b] + Length[b] * Size[a] + Lc * Zb;}printf("Ts : %lld %lld\n", Zc, Zb);printf("%.10f\n", (0.0 + Zc + Zb) / Zb);}return 0;
}

这篇关于[CF 629E] Famil Door and Roads的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/472304

相关文章

cf 164 C 费用流

给你n个任务,k个机器,n个任务的起始时间,持续时间,完成任务的获利 每个机器可以完成任何一项任务,但是同一时刻只能完成一项任务,一旦某台机器在完成某项任务时,直到任务结束,这台机器都不能去做其他任务 最后问你当获利最大时,应该安排那些机器工作,即输出方案 具体建图方法: 新建源汇S T‘ 对任务按照起始时间s按升序排序 拆点: u 向 u'连一条边 容量为 1 费用为 -c,

CF 508C

点击打开链接 import java.util.Arrays;import java.util.Scanner;public class Main {public static void main(String [] args){new Solve().run() ;} }class Solve{int bit[] = new int[608] ;int l

【CF】C. Glass Carving(二分 + 树状数组 + 优先队列 + 数组计数)

这题简直蛋疼死。。。。。 A了一下午 #include<cstdio>#include<queue>#include<cstring>#include<algorithm>using namespace std;typedef long long LL;const int maxn = 200005;int h,w,n;int C1[maxn],C2[maxn];int

【CF】E. Anya and Cubes(双向DFS)

根据题意的话每次递归分3种情况 一共最多25个数,时间复杂度为3^25,太大了 我们可以分2次求解第一次求一半的结果,也就是25/2 = 12,记录结果 之后利用剩余的一半求结果 s-结果 = 之前记录过的结果 就可以 时间复杂度降低为 3 ^ (n/2+1) 题目链接:http://codeforces.com/contest/525/problem/E #include<set

【CF】D. Arthur and Walls(BFS + 贪心)

D题 解题思路就是每次检查2X2的方格里是否只有一个‘*’,如果有的话这个*就需要变成‘.’,利用BFS进行遍历,入队的要求是这个点为. 一开始将所有的'.'全部加入队列,如果碰到一个'*'变成'.'就入队,判断的时候从4个方向就行判断 题目链接:http://codeforces.com/contest/525/problem/D #include<cstdio>#include<

CF#271 (Div. 2) D.(dp)

D. Flowers time limit per test 1.5 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/474/problem/D We s

CF Bayan 2015 Contest Warm Up B.(dfs+暴力)

B. Strongly Connected City time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/probl

CF Bayan 2015 Contest Warm Up A.(模拟+预处理)

A. Bayan Bus time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/problem/A The fi

CF #278 (Div. 2) B.(暴力枚举+推导公式+数学构造)

B. Candy Boxes time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/488/problem/B There

CF#278 (Div. 2) A.(暴力枚举)

A. Giga Tower time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/488/problem/A Giga To