zoukankan      html  css  js  c++  java
  • Spfa算法

    Invitation Cards
    Time Limit: 8000MS   Memory Limit: 262144K
    Total Submissions: 22277   Accepted: 7298

    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 #include <iostream>
     2 #include <cstdio>
     3 #include <queue>
     4 #include <algorithm>
     5 #include <cstring>
     6 #include <fstream>
     7 
     8 using namespace std;
     9 
    10 #define MAXN 1000100
    11 #define inf 1LL<<60
    12 
    13 int head1[MAXN],head2[MAXN];
    14 __int64 dist[MAXN];
    15 bool used[MAXN];
    16 int n,m,cnt;
    17 
    18 struct Edge
    19 {
    20     int to;
    21     int cost;
    22     int next;
    23 } edge_1[MAXN*10],edge_2[MAXN*10];
    24 
    25 void insert(Edge* edge,int* head,int u,int v,int w)
    26 {
    27     edge[cnt].to = v;
    28     edge[cnt].cost = w;
    29     edge[cnt].next = head[u];
    30     head[u] = cnt;
    31 }
    32 
    33 __int64 Spfa(Edge* edge,int* head,int u)
    34 {
    35     memset(used,false,(n+2)*sizeof(bool));
    36     for(int i=1; i<=n; i++)dist[i]=inf;
    37     dist[u]=0;
    38     queue<int>Q;
    39     Q.push(u);
    40     while(!Q.empty())
    41     {
    42         u=Q.front();
    43         Q.pop();
    44         used[u]=false;
    45         for(int i=head[u]; i!=-1; i=edge[i].next)
    46         {
    47             int v=edge[i].to,w=edge[i].cost;
    48             if(dist[u]+w<dist[v])
    49             {
    50                 dist[v]=dist[u]+w;
    51                 if(!used[v])
    52                 {
    53                     used[v]=true;
    54                     Q.push(v);
    55                 }
    56             }
    57         }
    58     }
    59     long long ans=0;
    60     for(int i=2; i<=n; i++)
    61         ans+=dist[i];
    62     return ans;
    63 }
    64 
    65 
    66 int main()
    67 {
    68    // freopen("in.txt","r",stdin);
    69     int _case;
    70     scanf("%d",&_case);
    71     while(_case--)
    72     {
    73         scanf("%d%d",&n,&m);
    74         cnt = 0;
    75         memset(head1,-1,(n+2)*sizeof(int));
    76         memset(head2,-1,(n+2)*sizeof(int));
    77         while(m--)
    78         {
    79             int u,v,w;
    80             scanf("%d%d%d",&u,&v,&w);
    81             insert(edge_1,head1,u,v,w);
    82             insert(edge_2,head2,v,u,w);
    83             cnt++;
    84         }
    85         __int64 ans = Spfa(edge_1,head1,1) + Spfa(edge_2,head2,1);
    86         cout << ans << endl;
    87     }
    88     return 0;
    89 }
    View Code
  • 相关阅读:
    iOS 新建xib文件时,最外层view的约束问题
    React native 无法弹出调试控件的问题
    从GitHub下载demo时遇到的依赖问题
    Mac 解决 Sourcetree 同步代码总需要密码的问题
    Mac 安装JRE 1.8
    正则表达式-- (.*?) 或 (.*+)
    字符串内有多个#号,每俩#号为一组,JavaScript 截取每组#号之间的字符
    Js/jQuery实时监听input输入框值变化
    Redis设置密码
    redis本机能访问 远程不能访问的问题
  • 原文地址:https://www.cnblogs.com/cjshuang/p/4744667.html
Copyright © 2011-2022 走看看