• 图论trainning-part-1 E. Invitation Cards


    E. Invitation Cards

    Time Limit: 8000ms
    Memory Limit: 262144KB
    64-bit integer IO format: %lld      Java class name: Main
     
    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

     解题:spfa无疑啊,当然用优先队列优化了的dijkstra也是可以的,Bellman-Ford直接TLE。此题有大坑,使用单源最短路径算法时,需要保证INF足够大,最好比INT的最大值大,否则一直WA,让人摸不着头脑啊。先求1到其他地的最短路之和,再把各边反向,再求一次1到其他站点的最短路之和。

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cmath>
     5 #include <algorithm>
     6 #include <climits>
     7 #include <vector>
     8 #include <queue>
     9 #include <cstdlib>
    10 #include <string>
    11 #include <set>
    12 #define LL long long
    13 #define INF 0xffffffff
    14 using namespace std;
    15 const int maxn = 1000005;
    16 struct arc {
    17     int to,w;
    18 };
    19 int u[maxn],v[maxn],w[maxn],n,m;
    20 LL d[maxn];
    21 vector<arc>g[maxn];
    22 queue<int>qu;
    23 bool used[maxn];
    24 void spfa() {
    25     int i,j;
    26     for(i = 2; i <= n; i++)
    27         d[i] = INF;
    28     d[1] = 0;
    29     memset(used,false,sizeof(used));
    30     while(!qu.empty()) qu.pop();
    31     qu.push(1);
    32     used[1] = true;
    33     while(!qu.empty()) {
    34         int temp = qu.front();
    35         used[temp] = false;
    36         qu.pop();
    37         for(i = 0; i < g[temp].size(); i++) {
    38             j = g[temp][i].to;
    39             if(d[j] > d[temp]+g[temp][i].w) {
    40                 d[j] = d[temp]+g[temp][i].w;
    41                 if(!used[j]) {
    42                     qu.push(j);
    43                     used[j] = true;
    44                 }
    45             }
    46         }
    47     }
    48 }
    49 int main() {
    50     int t;
    51     scanf("%d",&t);
    52     while(t--) {
    53         int i,j;
    54         scanf("%d%d",&n,&m);
    55         for(i = 1; i <= n; i++)
    56             g[i].clear();
    57         for(i = 1; i <= m; i++) {
    58             scanf("%d%d%d",u+i,v+i,w+i);
    59             g[u[i]].push_back((arc) {v[i],w[i]});
    60         }
    61         LL ans = 0;
    62         spfa();
    63         for(i = 1; i <= n; i++){
    64             ans += d[i];
    65             g[i].clear();
    66         }
    67         for(i = 1; i <= m; i++)
    68             g[v[i]].push_back((arc) {u[i],w[i]});
    69         spfa();
    70         for(i = 2; i <= n; i++)
    71             ans += d[i];
    72         printf("%I64d
    ",ans);
    73     }
    74     return 0;
    75 }
    View Code
  • 相关阅读:
    Sublime 官方安装方法
    Notepad2、Sublime_text带图标的右键快捷打开方式
    创业公司如何实施敏捷开发
    如果有人让你推荐编程技术书,请叫他看这个列表
    Spring cron表达式详解
    Spring定时任务的几种实现
    spring注解方式 idea报could not autowire,eclipse却没有问题
    mysql处理海量数据时的一些优化查询速度方法
    Hexo重装小结
    修改JAVA代码,需要重启Tomcat的原因
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/3860737.html
Copyright © 2020-2023  润新知