There is going to be a party to celebrate the 80-th Anniversary of the Ural State University. The University has a hierarchical structure of employees. It means that the supervisor relation forms a tree rooted at the rector V. E. Tretyakov. In order to make the party funny for every one, the rector does not want both an employee and his or her immediate supervisor to be present. The personnel office has evaluated conviviality of each employee, so everyone has some number (rating) attached to him or her. Your task is to make a list of guests with the maximal possible sum of guests' conviviality ratings. 

InputEmployees are numbered from 1 to N. A first line of input contains a number N. 1 <= N <= 6 000. Each of the subsequent N lines contains the conviviality rating of the corresponding employee. Conviviality rating is an integer number in a range from -128 to 127. After that go T lines that describe a supervisor relation tree. Each line of the tree specification has the form: 
L K 
It means that the K-th employee is an immediate supervisor of the L-th employee. Input is ended with the line 
0 0OutputOutput should contain the maximal sum of guests' ratings. 
Sample Input

7
1
1
1
1
1
1
1
1 3
2 3
6 4
7 4
4 5
3 5
0 0

Sample Output

5

水题一道,晚安。

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<memory>
using namespace std;
const int maxn=; int vis[maxn],V[maxn],ans,cnt,dp[maxn][];
int Laxt[maxn],Next[maxn],To[maxn],ru[maxn]; void add(int u,int v){
Next[++cnt]=Laxt[u];
Laxt[u]=cnt;
To[cnt]=v;
} int dfs(int u)
{
vis[u]=;
dp[u][]=V[u];
for(int i=Laxt[u];i;i=Next[i]){
int v=To[i];
if(!vis[v]){
dfs(v);
dp[u][]+=dp[v][];
dp[u][]+=max(dp[v][],dp[v][]);
}
}
} int main()
{
int i,j,k,n,u,v;
while(~scanf("%d",&n)){
cnt=;ans=;
memset(Laxt,,sizeof(Laxt));
memset(dp,,sizeof(dp));
memset(ru,,sizeof(ru));
memset(vis,,sizeof(vis));
for(i=;i<=n;i++) scanf("%d",&V[i]);
for(;;){
scanf("%d%d",&u,&v);
if(u==&&v==) break;
add(v,u);
ru[u]++;
}
for(i=;i<=n;i++) {
if(ru[i]==) {
dfs(i);
ans+=max(dp[i][],dp[i][]);//防止多棵树
}
}
printf("%d\n",ans);
}
return ;
}

最新文章

  1. Swift3.0P1 语法指南——枚举
  2. Windows下运行python脚本报错“ImportError: No Module named ...”的解决方法
  3. JavaWeb项目开发案例精粹-第3章在线考试系统-001设计
  4. C语言断言
  5. 【JAVA - SSM】之MyBatis的ParameterType的使用
  6. [SSD大法好]神舟K480-I5-D3鸟枪换炮M6S
  7. 记录一个js切换随机背景颜色的代码
  8. 如何处理导出的csv无法查看身份证后三位的情况?
  9. linux基本命令学习02
  10. VMware虚拟化解决方案】如何选择虚拟化产品
  11. tomcat安装启动startup.bat文件命令行界面出现乱码的问题解决
  12. SQLyog 报错2058 :连接 mysql 8.0.11 解决方法
  13. tomcat连接常用数据库的用法
  14. 从零开始单排学设计模式「简单工厂设计模式」黑铁 III
  15. 这些Linux命令,让你的工作事半功倍!
  16. Spring Security 学习总结
  17. 001. Ansible简介
  18. Linux内核分析第八周总结
  19. LabelTTF 设置字体时的问题
  20. rev命令详解

热门文章

  1. Python类变量,实例变量,类方法,实例方法,静态方法的分析
  2. nodejs中mysql断线重连
  3. 用Chrome查看微信访问需要OAuth2.0网页授权的页面
  4. JS怎么计算html标签里文字的宽度
  5. R-模式(mode)和类(class)
  6. ctci1.4
  7. poj-3461-kmp模板题。。。
  8. Spring Boot Logback几种日志详解
  9. IOS加载PDF文件
  10. 华为EPON OLT开局配置