UVA 11695 Flight Planning 修改一条边使得树的直径最短

解决UVA 11695 Flight Planning问题,探讨如何通过修改树的一条边来最小化树的直径。策略包括枚举删除的边,计算子树的重心,并连接重心以找到可能的最短直径路径。
摘要由CSDN通过智能技术生成

题目链接:点击打开链接

题意:

给定n(n<=2500) 节点的一棵树

删除一条边再加入一条边使得树的直径最短。

思路:首先枚举删除的那条边,

然后计算出删除后的2棵子树各自的重心

则新建的边一定是重心的连线。

而新的直径要么是在某个子树中,要么是两个子树间。

#include <cstdio>
#include <algorithm>
#include <string.h>
#include <queue>
#include <cstring>
#include <cmath>
#include <iostream>
#include <vector>
using namespace std;
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;
#define pb push_back
const double inf = 1e9;
const int N = 2505;
struct Ans{
	int ans, oldx, oldy, nowx, nowy;
};
vector<int>edge[N];
void add(int u, int v){
	edge[u].push_b
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值