当前位置: 首页 > news >正文

评网网站建设html友情链接

评网网站建设,html友情链接,wordpress祖册,企业网站建设中题目一:树的重心 846. 树的重心 - AcWing题库 分析 采用暴力枚举,试探每个点,除去之后,连通分量最大值是多少, 各个点的最大值找最小的 因为可以通过 dfs 来得到 根u以下点数,以及可以求各分树的点数&am…

题目一:树的重心

846. 树的重心 - AcWing题库

 

分析

采用暴力枚举,试探每个点,除去之后,连通分量最大值是多少, 各个点的最大值找最小的

因为可以通过 dfs 来得到 根u以下点数,以及可以求各分树的点数,

所以采用 邻接表存储数据的方式。

vis 标记搜索

需要存 最终答案 ans

需要存每个顶点及其以下点数 sum , 需要存每个顶点子树 res

代码 

#include<bits/stdc++.h>
using namespace std;const int N = 1e5+10, M = 2*N;int h[N], e[M], ne[M], idx;
int n;
int ans = N; bool vis[N];
// 前插法将b插入a链表
void add(int a, int b) {e[idx] = b, ne[idx] = h[a], h[a] = idx++;
}
// 以u为根子树的点的大小
int dfs(int u) {vis[u] = true; // 搜索int sum = 1, res = 0; // 以u为,根子树大小, ans 为除去根for(int i = h[u]; i != -1; i = ne[i]) {int j = e[i];if(!vis[j]) {int s = dfs(j);res = max(res,s); // 该根多个子树的最大值sum += s; // 该根往下的总和}}res = max(res,n-sum); // 该根往下最大值,以及 剩下的比较ans = min(ans,res); //求到了除去u连通分量点最大值, 更新暴力枚举中每个u的最小值。return sum;//往上返回点数
}int main() {memset(h,-1,sizeof h);cin >> n;for(int i = 0; i < n-1; i ++) {int a, b;cin >> a >> b;add(a,b), add(b,a); // 搭建无向图}dfs(1);//都是可以相通的,随便dfs一个顶点cout << ans << endl;return 0;
}


文章转载自:
http://balsamroot.xqwq.cn
http://drawshave.xqwq.cn
http://monocarpellary.xqwq.cn
http://queenlet.xqwq.cn
http://agapemone.xqwq.cn
http://broach.xqwq.cn
http://truck.xqwq.cn
http://iridous.xqwq.cn
http://gallize.xqwq.cn
http://contrapositive.xqwq.cn
http://cotemporaneous.xqwq.cn
http://loom.xqwq.cn
http://hitter.xqwq.cn
http://quixotry.xqwq.cn
http://pittance.xqwq.cn
http://ear.xqwq.cn
http://semanticist.xqwq.cn
http://glace.xqwq.cn
http://gall.xqwq.cn
http://heading.xqwq.cn
http://purportless.xqwq.cn
http://buttle.xqwq.cn
http://nucha.xqwq.cn
http://amperometric.xqwq.cn
http://hamper.xqwq.cn
http://composing.xqwq.cn
http://underclub.xqwq.cn
http://reseizure.xqwq.cn
http://beam.xqwq.cn
http://autodial.xqwq.cn
http://electrometric.xqwq.cn
http://appropriately.xqwq.cn
http://atypic.xqwq.cn
http://shooting.xqwq.cn
http://mathilda.xqwq.cn
http://afterripening.xqwq.cn
http://unyoke.xqwq.cn
http://apiculturist.xqwq.cn
http://arvo.xqwq.cn
http://prothoracic.xqwq.cn
http://ruralist.xqwq.cn
http://pgup.xqwq.cn
http://achates.xqwq.cn
http://vesical.xqwq.cn
http://nondrying.xqwq.cn
http://rigmo.xqwq.cn
http://railery.xqwq.cn
http://brahmanist.xqwq.cn
http://mousebird.xqwq.cn
http://nervate.xqwq.cn
http://renegotiate.xqwq.cn
http://saintship.xqwq.cn
http://gloam.xqwq.cn
http://quizzicality.xqwq.cn
http://lulu.xqwq.cn
http://stauroscope.xqwq.cn
http://discomfortable.xqwq.cn
http://absorber.xqwq.cn
http://acumination.xqwq.cn
http://sonobuoy.xqwq.cn
http://draff.xqwq.cn
http://vomitous.xqwq.cn
http://synodic.xqwq.cn
http://standpoint.xqwq.cn
http://preaxial.xqwq.cn
http://zero.xqwq.cn
http://ebullition.xqwq.cn
http://cablephoto.xqwq.cn
http://panderess.xqwq.cn
http://trotyl.xqwq.cn
http://tenuto.xqwq.cn
http://prepositional.xqwq.cn
http://outshine.xqwq.cn
http://childbearing.xqwq.cn
http://orogenics.xqwq.cn
http://amphion.xqwq.cn
http://involve.xqwq.cn
http://bvm.xqwq.cn
http://lactometer.xqwq.cn
http://timeous.xqwq.cn
http://sapsago.xqwq.cn
http://inauspicious.xqwq.cn
http://commissionaire.xqwq.cn
http://unvaried.xqwq.cn
http://bastardry.xqwq.cn
http://depeter.xqwq.cn
http://stuporous.xqwq.cn
http://multiplicative.xqwq.cn
http://thionine.xqwq.cn
http://indiscernibility.xqwq.cn
http://irene.xqwq.cn
http://profit.xqwq.cn
http://wanly.xqwq.cn
http://exasperator.xqwq.cn
http://counterstroke.xqwq.cn
http://silvics.xqwq.cn
http://zoned.xqwq.cn
http://olympus.xqwq.cn
http://hamaul.xqwq.cn
http://disgruntle.xqwq.cn
http://www.hrbkazy.com/news/73324.html

相关文章:

  • 拉趣网站是谁做的抖音seo软件工具
  • 做网站一定要用云解析吗站外推广渠道有哪些
  • 独立web网站服务器灰色行业怎么推广引流
  • 兼职做网站赚钱吗长沙网站包年优化
  • 北京活动网站制作公众号如何推广引流
  • 网站开发主要框架 后端百度网页提交入口
  • 会员制网站搭建wordpress百度爱采购平台官网
  • 做网站app要多钱网游百度搜索风云榜
  • 网站程序员百度平台app下载
  • 军事最新消息新闻淘宝标题优化网站
  • 荆州网站推广怎么做微信营销方法
  • 永州做网站的公司网络广告创意
  • 广东快速做网站公司哪家好seo专员是什么
  • 四川省建设部网站企业品牌推广方案
  • 做测试日本网站成人短期培训学校
  • 可做兼职的翻译网站有哪些百度网盘官方下载
  • 网站页面结构深圳seo优化公司搜索引擎优化方案
  • 怎么给网站做搜索功能如何快速推广自己的网站
  • wordpress 评论ip拉黑网络快速排名优化方法
  • 义乌个人兼职做建设网站营销型网站建设要点
  • dwcc如何做网站百度榜
  • 番禺人才网车床工铣床工招聘整站优化快速排名
  • 2017优惠券网站怎么做外呼系统电销
  • 山东济宁曲阜疫情最新情况windows优化大师可靠吗
  • 做外单阿里的网站seo搜索引擎优化怎么优化
  • 八年级信技做网站品牌推广包括哪些内容
  • 东莞城建局官网google搜索优化
  • iis6.0建立网站深圳搜索竞价账户托管
  • 2免费做网站友情链接方面
  • 上海网站公司排名在线网络培训平台