POJ 1511 Invitation Cards

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
题意:一些学生被雇佣来分发请柬,他们每次从中心站出发到达其他的站分发请柬,现在要计算一天下来给他们的工资最少为多少,(从a站到b站给的工资和b站到a站可能是不一样的,但是最终每个人都是要回到中心站的,此题中中心站标号是1),和POJ 3268 Silver Cow Party相似,都是进行两次spfa算法,不同的是这次的数据较大,用邻接表更好。
#include<stdio.h>
#include<queue>
#include<string.h>
#include<algorithm>
using namespace std;

const int N=1000010;
const int INF=0x3f3f3f3f;

int d1[N], d2[N], vis[N], n, head[N], k;
struct node
{
    int v, flow, next;
}no[N];
struct mode
{
    int a, b, c;
}mo[N];

void Init(int d[])
{
    int i;

    for (i = 1; i <= n; i++)
    {
        d[i] = INF;
        vis[i] = 0;
        head[i] = -1;
    }

    k = 0;
}

void Add(int a, int b, int c)
{
    no[k].v = b;
    no[k].flow = c;
    no[k].next = head[a];

    head[a] = k++;
}

void Spfa(int d[])
{
    int v, i, u;
    queue<int>Q;

    Q.push(1);
    d[1] = 0;

    while (!Q.empty())
    {
        v = Q.front(); Q.pop();

        for (i = head[v]; i != -1; i = no[i].next)
        {
            u = no[i].v;

            if (d[u] > d[v]+no[i].flow)
            {
                d[u] = d[v]+no[i].flow;

                if (!vis[u])
                {
                    Q.push(u);
                    vis[u] = 1;
                }
            }
        }

        vis[v] = 0;
    }
}

int main ()
{
    int T, m, i;
    long long ans;

    scanf("%d", &T);

    while (T--)
    {
        scanf("%d%d", &n, &m);

        Init(d1);
        ans = 0;

        for (i = 1; i <= m; i++)
        {
            scanf("%d%d%d", &mo[i].a, &mo[i].b, &mo[i].c); 
            Add(mo[i].a, mo[i].b, mo[i].c); ///先顺方向存入,计算1到其他点的最短路径
        }

        Spfa(d1);

        Init(d2); ///再次初始化后反向存入,计算1到其他点的最短路径

        for (i = 1; i <= m; i++)
            Add(mo[i].b, mo[i].a, mo[i].c);

        Spfa(d2);

        for (i = 1; i <= n; i++)
            ans += d1[i]+d2[i];

        printf("%lld
", ans);
    }

    return 0;
}
原文地址:https://www.cnblogs.com/syhandll/p/4813912.html