Maximum White Subtree
2020-03-26 16:02:02来源:博客园 阅读 ()
Maximum White Subtree
题目的地址:https://vjudge.net/contest/363381#problem/F
参考题解:
https://blog.csdn.net/starlet_kiss/article/details/104844691
树状数组解法
https://www.cnblogs.com/cjtcalc/p/12485536.html
dfs解法
关于这道题,就是求最小连通子图的最优解,无根
综合上述两种方法,我的代码:
//#include <bits/stdc++.h> #include <iostream> #include <cstdio> #include <string.h> #include <algorithm> using namespace std; const int MAXX=200100; int edge[MAXX<<1],eto[MAXX<<1],head[MAXX<<1]; int color[MAXX],sum[MAXX],ans[MAXX],fu[MAXX]; int tot=0,n; int read(){ /* int x=0,f=1; char s=getchar(); while(s<0||s>9){if(s=='-'){f=-f;s=getchar();}} while(s>=0&&s<=9){x=x*10+s-'0';s=getchar();} return x*f; */ char x=getchar(); while(x==' '||x=='\n')x=getchar();// if(x=='0') return -1; else if(x=='1') return 1; else return 0; } void add(int u,int v){//eto到上一条以此节点为父节点的边,edge此节点的相邻结点 eto[++tot]=head[u],edge[tot]=v,head[u]=tot; } void dfs(int u,int f){ fu[u]=f; sum[u]=color[u]; for(int i=head[u];i>0;i=eto[i]){ int to=edge[i]; if(to==f)continue; dfs(to,u); if(sum[to]>0)sum[u]+=sum[to]; } } void DFS(int u,int f){ if(sum[u]>=0)ans[u]=max(sum[u],ans[f]); else if(ans[f]>0)ans[u]=ans[f]+sum[u]; else ans[u]=sum[u]; for(int i=head[u];i>0;i=eto[i]){ int to=edge[i]; if(to==f)continue; DFS(to,u); } } int main(){ scanf("%d",&n); memset(head,0,sizeof(head));//<string.h> for(int i=1;i<=n;i++){ color[i]=read(); } int a,b; for(int i=1;i<n;i++){ scanf("%d%d",&a,&b); add(a,b); add(b,a);//一条边存两次,所以需要两倍的空间 } ans[0]=sum[0]=-1*MAXX; dfs(1,0); ans[1]=sum[1]; DFS(1,0); for(int i=1;i<=n;i++){printf("%d ",ans[i]);} printf("\n"); return 0; }
原文链接:https://www.cnblogs.com/sos3210/p/12577308.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:C++ 实现带监视哨的顺序查找
下一篇:C++ 字符串输入
- 【学习笔记】RMQ-Range Minimum/Maximum Query (区间最小/ 2019-08-26
- HDU6298 Maximum Multiple (多校第一场1001) 2018-09-05
- Uncaught RangeError: Maximum call stack size exceeded 调 2018-06-18
- 2016弱校联盟十一专场10.3---Similarity of Subtrees(深搜+ 2018-06-17
- HDU 5113--Black And White(搜索+剪枝) 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash