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
  • 相关阅读:
    浅谈 Nginx 的内部核心架构设计
    项目中常用的19条MySQL优化
    Redis分布式锁的正确实现方式
    C# 读取XML文件示例
    C# LINQ to XML示例
    最新的极光推送服务器端代码(java服务器后台向手机端自定义推送消息)
    极光推送>>java SDK服务端集成后台项目(使用详解)
    关于如何在Listener中注入service和ServletContextListener源码分析
    mysql 去除重复 Select中DISTINCT关键字的用法 在使用mysql时,有时需要查询出某个字段不重复的记录,虽然mysql提供 有distinct这个关键字来过滤掉多余的重复记录只保留一条,但往往只用它来返回不重复记录的条数,而不是用它来返回不重记录的所有值。其原因是 distinct只能返回它的目标字段,而无法返回其它字段,这个问题让我困扰了很久,用distinct不能解决的话,
    Spring 整合 Quartz 实现动态定时任务
  • 原文地址:https://www.cnblogs.com/cjshuang/p/4744667.html
Copyright © 2011-2022 走看看