zoukankan      html  css  js  c++  java
  • poj1511

    Invitation Cards

    Time Limit: 8000MS   Memory Limit: 262144K
    Total Submissions: 25099   Accepted: 8297

    Description

    In the age of television, not many people attend theater performances. Antique Comedians of Malidinesia are aware of this fact. They want to propagate theater and, most of all, Antique Comedies. They have printed invitation cards with all the necessary information and with the programme. A lot of students were hired to distribute these invitations among the people. Each student volunteer has assigned exactly one bus stop and he or she stays there the whole day and gives invitation to people travelling by bus. A special course was taken where students learned how to influence people and what is the difference between influencing and robbery. 

    The transport system is very special: all lines are unidirectional and connect exactly two stops. Buses leave the originating stop with passangers each half an hour. After reaching the destination stop they return empty to the originating stop, where they wait until the next full half an hour, e.g. X:00 or X:30, where 'X' denotes the hour. The fee for transport between two stops is given by special tables and is payable on the spot. The lines are planned in such a way, that each round trip (i.e. a journey starting and finishing at the same stop) passes through a Central Checkpoint Stop (CCS) where each passenger has to pass a thorough check including body scan. 

    All the ACM student members leave the CCS each morning. Each volunteer is to move to one predetermined stop to invite passengers. There are as many volunteers as stops. At the end of the day, all students travel back to CCS. You are to write a computer program that helps ACM to minimize the amount of money to pay every day for the transport of their employees. 

    Input

    The input consists of N cases. The first line of the input contains only positive integer N. Then follow the cases. Each case begins with a line containing exactly two integers P and Q, 1 <= P,Q <= 1000000. P is the number of stops including CCS and Q the number of bus lines. Then there are Q lines, each describing one bus line. Each of the lines contains exactly three numbers - the originating stop, the destination stop and the price. The CCS is designated by number 1. Prices are positive integers the sum of which is smaller than 1000000000. You can also assume it is always possible to get from any stop to any other stop.

    Output

    For each case, print one line containing the minimum amount of money to be paid each day by ACM for the travel costs of its volunteers.

    Sample Input

    2
    2 2
    1 2 13
    2 1 33
    4 6
    1 2 10
    2 1 60
    1 3 20
    3 4 10
    2 4 5
    4 1 50

    Sample Output

    46
    210

    题目大意

    起点为1号点,求1到所有点最短路径及所有点到1的最短路径来回总和

    思路:

    因为题目规模太大,不能用二维数组来存储点与点之间的权值,而且考虑到也会超时,所以选用spfa加邻接表的方式来做这道题

    1-所有其他点的最短路径很好求,而其他点到1的的最短距离可以通过把起点与终点反向从而求出的便是其他点到1的距离了

    代码如下:

    #include <iostream>
    #include<queue>
    #include<cstring>
    #include<cstdio>
    using namespace std;
    const int maxs = 1000000+5;
    const __int64 INF = 0xFFFFFFFF;
    __int64 dist1[maxs],dist2[maxs],ans=0;
    struct Edge
    {
        int e,next,weight;
    }edge1[maxs],edge2[maxs];
    int head1[maxs],head2[maxs];
    int n,m;
    void spfa(Edge edge[],__int64 dist[],int head[maxs])
    {
        bool vis[maxs];
        memset(vis,false,sizeof(vis));
        for(int i=1;i<=n;i++)
            dist[i]=INF;
        dist[1]=0;
        queue<int> q;
        q.push(1);
        vis[1]=true;
        while(!q.empty())
        {
            int cur = q.front();
            q.pop();
            vis[cur]=false;
            for(int i=head[cur];i!=-1;i=edge[i].next)
            {
                if(dist[edge[i].e]>dist[cur]+edge[i].weight)
                {
                    dist[edge[i].e]=dist[cur]+edge[i].weight;
                    if(!vis[edge[i].e])
                    {
                        q.push(edge[i].e);
                        vis[edge[i].e]=true;
                    }
                }
    
            }
        }
    }
    int main()
    {
        freopen("in.txt","r",stdin);
        int T;
        scanf("%d",&T);
        while(T--)
        {
            scanf("%d%d",&n,&m);
            memset(head1,-1,sizeof(head1));
            memset(head2,-1,sizeof(head2));
            memset(edge1,0,sizeof(edge1));
            memset(edge2,0,sizeof(edge2));
            for(int i=1;i<=m;i++)
            {
                int a,b,w;
                scanf("%d%d%d",&a,&b,&w);
                edge1[i].e=b;
                edge1[i].weight=w;
                edge1[i].next=head1[a];
                head1[a]=i;
                edge2[i].e=a;
                edge2[i].weight=w;
                edge2[i].next=head2[b];
                head2[b]=i;
            }
            ans=0;
            spfa(edge1,dist1,head1);
            spfa(edge2,dist2,head2);
            for(int i=1;i<=n;i++)
                ans+=(dist1[i]+dist2[i]);
            printf("%I64d
    ",ans);
        }
        return 0;
    }
  • 相关阅读:
    MSDTC服务出错
    jquery.lazyload.js实现图片延迟加载——wordpress图片随滚动条渐显效果
    js:警惕firstChild
    基于jquery的表格排序
    jquery JSON的解析方式
    用JS jquery取float型小数点后两位
    JQuery之append和appendTo的区别,还有js中的appendChild用法
    js笔记之Math random()、ceil()、floor()、round()
    Oracle笔记
    STL: equal
  • 原文地址:https://www.cnblogs.com/wt20/p/5744581.html
Copyright © 2011-2022 走看看