比赛 |
20111109 |
评测结果 |
EEETTTTTTT |
题目名称 |
火车站饭店 |
最终得分 |
0 |
用户昵称 |
Yeehok |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2011-11-09 12:47:54 |
显示代码纯文本
#include<cstdio>
using namespace std;
int n;
int a[10000];
bool g[1000][10000],flag[10000];
int main()
{
freopen("profitz.in","r",stdin);
freopen("profitz.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
scanf("%d",&a[i]);
flag[i]=true;
}
for(int i=1;i<n;i++)
{
int x,y;
scanf("%d%d",&x,&y);
g[x][y]=true;
g[y][x]=true;
}
int t=n-1;
while(t>0)
{
for(int i=1;i<=n;i++)
{
short total=0;
short total2=0;
for(int j=1;j<=n;j++)
{
if(g[i][j])
{
total+=a[j];
total2++;
}
}
if(total>a[i]&&total2>1)
{
flag[i]=false;
for(int j=1;j<=n;j++)
{
g[i][j]=false;
g[j][i]=false;
t-=2;
}
}
}
}
int ans=0;
for(int i=1;i<=n;i++)
{
if(flag[i])
ans+=a[i];
}
printf("%d",ans);
return 0;
}