博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AGC001 C - Shorten Diameter【枚举】
阅读量:5218 次
发布时间:2019-06-14

本文共 831 字,大约阅读时间需要 2 分钟。

一开始没看到要保证最后是树……所以一定要从叶子开始删

枚举重心,如果k是偶数,那么按当前重心提起来deep大于k/2的全都要切掉,这样枚举重心然后取min即可
奇数的话就是枚举直径中间的边,然后从两边的点分别dfs删点

#include
#include
using namespace std;const int N=5005;int n,k,m,h[N],cnt,ans=1e9,sm;struct qwe{ int ne,no,to;}e[N];int read(){ int r=0,f=1; char p=getchar(); while(p>'9'||p<'0') { if(p=='-') f=-1; p=getchar(); } while(p>='0'&&p<='9') { r=r*10+p-48; p=getchar(); } return r*f;}void add(int u,int v){ cnt++; e[cnt].ne=h[u]; e[cnt].no=u; e[cnt].to=v; h[u]=cnt;}void dfs(int u,int fa,int de){ if(de>m) sm++; for(int i=h[u];i;i=e[i].ne) if(e[i].to!=fa) dfs(e[i].to,u,de+1);}int main(){ n=read(),k=read(),m=k/2; for(int i=1;i

转载于:https://www.cnblogs.com/lokiii/p/10908061.html

你可能感兴趣的文章
如何 Mock 非虚方法和密封类?
查看>>
判断应用程序是控制台程序还是窗体程序
查看>>
hdu 相遇周期
查看>>
Hive分区表增加字段新增字段值为空的bug
查看>>
rman catalog配置简要笔记
查看>>
Test SRM Level One: TemperatureScales
查看>>
ListView
查看>>
Vue自动化工具(Vue-CLI)
查看>>
十、IntelliJ IDEA 中 Project 和 Module 的概念及区别
查看>>
用户用户组管理:用户管理命令useradd
查看>>
站立会议个人博客2(2016/4/20)
查看>>
调用电话短信
查看>>
Ubunut16.04 deb包的安装与卸载
查看>>
【Oracle 存储过程和存储函数】 (1) 使用和创建存储过程,第一个存储过程
查看>>
KMP算法模板
查看>>
模版-树链剖分
查看>>
poj_1579 && hdoj_1331
查看>>
【VS开发】【Live555-rtsp】RTSP服务器实例live555源代码分析
查看>>
实验9
查看>>
【神经网络与深度学习】公开的海量数据集
查看>>