• 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;
        }
    }







  • 相关阅读:
    C++11 指针成员与拷贝构造(浅拷贝与深拷贝)
    C++11 委派构造函数
    C++11 继承构造函数
    C++11 局部和匿名类型作模板实参
    C++11 外部模板
    C++11 函数模板的默认模板参数
    2D游戏新手引导点光源和类迷雾实现
    UVA 12293
    【算法】8 图文搭配诠释三种链表及其哨兵
    小米面试
  • 原文地址:https://www.cnblogs.com/da-mei/p/9053355.html
Copyright © 2020-2023  润新知