XTU 1252 Defense Tower

Posted Fighting Heart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XTU 1252 Defense Tower相关的知识,希望对你有一定的参考价值。

$2016$长城信息杯中国大学生程序设计竞赛中南邀请赛$J$题

贪心。

优先删除$power$大的点。

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<iostream>
using namespace std;
typedef long long LL;
const double pi=acos(-1.0),eps=1e-8;

const int maxn=100010;
int p[maxn],n;
vector<int>g[maxn];
struct X { int h,p; }s[maxn];
bool f[maxn];

bool cmp(X a,X b) {return a.p>b.p;}
int main()
{
    while(~scanf("%d",&n))
    {
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&s[i].p), s[i].h=i;
            p[i]=s[i].p;
        }
        sort(s+1,s+1+n,cmp); memset(f,0,sizeof f);
        for(int i=1;i<=n;i++) g[i].clear();
        for(int i=1;i<=n-1;i++)
        {
            int a,b; scanf("%d%d",&a,&b);
            g[a].push_back(b); g[b].push_back(a);
        }

        LL ans=0;
        for(int i=1;i<=n;i++)
        {
            for(int j=0;j<g[s[i].h].size();j++)
            {
                int to=g[s[i].h][j];
                if(f[to]) continue;
                ans=ans+(LL)p[to];
            }
            f[s[i].h]=1;
        }
        cout<<ans<<endl;
    }
    return 0;
}

 

以上是关于XTU 1252 Defense Tower的主要内容,如果未能解决你的问题,请参考以下文章

hdu 4779 Tower Defense (思维+组合数学)

I.Tower Defense

HDU 4939 Stupid Tower Defense dp

HDU4779 Tower Defense 组合数学

用递归方法解决汉诺塔问题(Recursion Hanoi Tower Python)

xtu 1035 与xtu 1036 两道出栈入栈题目,蛮有趣的