zoukankan      html  css  js  c++  java
  • poj 3013 big christmas tree 最短路SPFA

    Big Christmas Tree

       


    Christmas is coming to KCM city. Suby the loyal civilian in KCM city is preparing a big neat Christmas tree. The simple structure of the tree is shown in right picture.

    The tree can be represented as a collection of numbered nodes and some edges. The nodes are numbered 1 through n. The root is always numbered 1. Every node in the tree has its weight. The weights can be different from each other. Also the shape of every available edge between two nodes is different, so the unit price of each edge is different. Because of a technical difficulty, price of an edge will be (sum of weights of all descendant nodes) × (unit price of the edge).

    Suby wants to minimize the cost of whole tree among all possible choices. Also he wants to use all nodes because he wants a large tree. So he decided to ask you for helping solve this task by find the minimum cost.

    Input
    The input consists of T test cases. The number of test cases T is given in the first line of the input file. Each test case consists of several lines. Two numbers v, e (0 ≤ v, e ≤ 50000) are given in the first line of each test case. On the next line, v positive integers wi indicating the weights of v nodes are given in one line. On the following e lines, each line contain three positive integers a, b, c indicating the edge which is able to connect two nodes a and b, and unit price c.

    All numbers in input are less than 216.

    Output
    For each test case, output an integer indicating the minimum possible cost for the tree in one line. If there is no way to build a Christmas tree, print “No Answer” in one line.

    Sample Input
    2
    2 1
    1 1
    1 2 15
    7 7
    200 10 20 30 40 50 60
    1 2 1
    2 3 3
    2 4 2
    3 5 4
    3 7 2
    3 6 3
    1 5 9
    Sample Output
    15
    1210

    题意真的是太难懂,不知道大佬们是怎么看懂的,为什么不是最小生成树,真的很一脸懵逼呀,,,但是题还是要刷的。。求出最短路之后,乘以点的权值相加。(inf的值狠大,WA了无数次。)

    #include<stdio.h>
    #include<iostream>
    #include<cstring>
    #include<string.h>
    #include<algorithm>
    #include<stdlib.h>
    #include<queue>
    #define inf 0x3f3f3f3f3f
    using namespace std;
    long long dis[50005];
    bool vis[50005];
    int v[50005];
    int n,m;
    struct node
    {
        int u,v,w;
        struct node*next;
    }*h[50005];
    void LA(int u,int v,int w)
    {
        struct node*p=(struct node*)malloc(sizeof(struct node));
        p->v=v;
        p->w=w;
        p->next=h[u];
        h[u]=p;
    }
    void in()
    {
        for(int i=0; i<=n; i++)
        {
            dis[i]=inf;
        }
    }
    void spfa(int s)
    {
        memset(vis,false,sizeof(vis));
        queue<int>q;
        dis[s]=0;
        vis[s]=true;
        q.push(s);
        while(!q.empty())
        {
            int u=q.front();
            q.pop();
            vis[u]=false;
            struct node*p;
            for(p=h[u]; p!=NULL; p=p->next)
            {
                int Q=p->v;
                if(dis[Q]>dis[u]+p->w)
                {
                    dis[Q]=dis[u]+p->w;
                    if(!vis[Q])
                    {
                        vis[Q]=true;
                        q.push(Q);
                    }
                }
            }
        }
    }
    int main()
    {
        int t;
        scanf("%d",&t);
        while(t--)
        {
            memset(h,0,sizeof(h));
            memset(v,0,sizeof(v));
            scanf("%d%d",&n,&m);
            for(int i=1; i<=n; i++)
            {
                scanf("%d",&v[i]);
            }
            for(int i=0; i<m; i++)
            {
                int a,b,c;
                scanf("%d%d%d",&a,&b,&c);
                LA(a,b,c);
                LA(b,a,c);
            }
            in();
            spfa(1);
            long long ans=0;
            int flag=0;
            for(int i=1; i<=n; i++)
            {
                if(dis[i]==inf)
                {
                    flag=1;
                    printf("No Answer
    ");
                    break;
                }
                ans+=(dis[i]*v[i]);
            }
            if(flag==0)
                cout<<ans<<endl;
        }
    }







  • 相关阅读:
    JVM参数默认值列表
    垃圾回收G1日志解析
    《深入理解JAVA虚拟机》垃圾回收时为什么会停顿
    《深入理解JAVA虚拟机》JDK的垃圾收集算法
    什么才是技术?
    Lodash使用示例(比较全)
    MSCL超级工具类(C#),开发人员必备,开发利器
    刷新SqlServer数据库中所有的视图
    Sql Server 2014/2012/2008/2005 数据库还原出现 3154错误的解决办法
    C#中执行批处理文件(.bat),执行数据库相关操作
  • 原文地址:https://www.cnblogs.com/da-mei/p/9053355.html
Copyright © 2011-2022 走看看