题目链接:

http://acm.hdu.edu.cn/showproblem.php?pid=1535

Problem 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
 /*
问题
输入顶点数p和边数q以及q条边
计算并输出顶点1到每个顶点的最短路径花费,再加上每个顶点到1的最短路径花费 解题思路
求1号顶点到其余顶点的最短路径之和不难,Dijkstra求解单源最短路即可,关键是其余顶点到1号顶点的最短路径之和
具体做法是将原图的所有边都反向存储一遍,再跑一边1号顶点到其余顶点的Dijkstra单源最短路就是要求的其余顶点到1号顶
点的最短路径之和。
另外由于顶点和边很多,所以采用邻接表+优先队列优化的Dijkstra算法。
*/
#include<bits/stdc++.h>//HDU G++
const int maxn=1e6+;
const int INF=1e9+; using namespace std; int u[maxn],v[maxn],w[maxn]; struct Edge{
int from,to,dist;
}; struct HeapNode{
int d,u;
bool operator < (const HeapNode& rhs) const {//优先队列,重载<运算符
return d >rhs.d;
}
}; struct Dijkstra{
int n,m;
vector<Edge> edges; //邻接表
vector<int> G[maxn]; //每个节点出发的边编号(从0开始编号)
bool done[maxn]; //是否已经永久编号
int d[maxn]; //s到各个点的距离
int p[maxn]; //最短路中的上一条边 void init(int n){
this->n =n;
for(int i=;i<n;i++) G[i].clear();//清空邻接表
edges.clear(); //清空边表
} void AddEdge(int from,int to,int dist){
//如果是无向图需要将每条无向边存储两边,及调用两次AddEdge
edges.push_back((Edge){from,to,dist});
m=edges.size();
G[from].push_back(m-);
} void dijkstra(int s){//求s到其他点的距离
priority_queue<HeapNode> Q;
for(int i=;i<n;i++) d[i]=INF;
d[s]=; memset(done,,sizeof(done));
Q.push((HeapNode){,s}); while(!Q.empty()){
HeapNode x =Q.top();
Q.pop(); int u=x.u;
if(done[u]) continue;
done[u]=true; for(int i=;i<G[u].size();i++){
Edge& e = edges[G[u][i]];
if(d[e.to] > d[u] + e.dist){
d[e.to] = d[u] + e.dist;
p[e.to] = G[u][i];
Q.push((HeapNode){d[e.to],e.to});
}
}
}
}
}; struct Dijkstra solver; int main()
{
int T,n,m;
scanf("%d",&T);
while(T--){
scanf("%d%d",&n,&m);
solver.init(n);
for(int i=;i<=m;i++){
scanf("%d%d%d",&u[i],&v[i],&w[i]);
u[i]--;//模板中的顶点从0开始
v[i]--;
solver.AddEdge(u[i],v[i],w[i]);
}
solver.dijkstra();
int ans=;
for(int i=;i<solver.n;i++)
ans += solver.d[i]; solver.init(n);
for(int i=;i<=m;i++){
solver.AddEdge(v[i],u[i],w[i]);//清空后反向存储
}
solver.dijkstra();
for(int i=;i<solver.n;i++)
ans += solver.d[i]; printf("%d\n",ans);
}
return ;
}
 

HDU 1535 Invitation Cards(逆向思维+邻接表+优先队列的Dijkstra算法)的更多相关文章

  1. Invitation Cards(邻接表+逆向建图+SPFA)

    Time Limit: 8000MS   Memory Limit: 262144K Total Submissions: 17538   Accepted: 5721 Description In ...

  2. hdu 1535 Invitation Cards (最短路径)

    Invitation Cards Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others ...

  3. HDU 1535 Invitation Cards(最短路 spfa)

    题目链接: 传送门 Invitation Cards Time Limit: 5000MS     Memory Limit: 32768 K Description In the age of te ...

  4. HDU 1535 Invitation Cards(SPFA,及其优化)

    题意: 有编号1-P的站点, 有Q条公交车路线,公交车路线只从一个起点站直接到达终点站,是单向的,每条路线有它自己的车费. 有P个人早上从1出发,他们要到达每一个公交站点, 然后到了晚上再返回点1. ...

  5. HDU 1535 Invitation Cards (POJ 1511)

    两次SPFA. 求 来 和 回 的最短路之和. 用Dijkstra+邻接矩阵确实好写+方便交换.可是这个有1000000个点.矩阵开不了. d1[]为 1~N 的最短路. 将全部边的 邻点 交换. d ...

  6. hdu 1535 Invitation Cards(SPFA)

    Invitation Cards Time Limit : 10000/5000ms (Java/Other)   Memory Limit : 65536/65536K (Java/Other) T ...

  7. HDU 1535 Invitation Cards (最短路)

    题目链接 Problem Description In the age of television, not many people attend theater performances. Anti ...

  8. HDU - 1535 Invitation Cards 前向星SPFA

    Invitation Cards In the age of television, not many people attend theater performances. Antique Come ...

  9. hdu 1535 Invitation Cards(spfa)

    Invitation Cards Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others ...

随机推荐

  1. CSS 基础 例子 定位及z-index

    position 属性指定了元素的定位类型. position 属性的四个值: static    不设置默认为该值,即没有定位,元素出现在正常的流中.不能使用top,bottom,left,righ ...

  2. ASP.NET Web API 框架研究 ASP.NET Web API 路由

    ASP.NET Web API 核心框架是一个独立的.抽象的消息处理管道,ASP.NET Web API有自己独立的路由系统,是消息处理管道的组成部分,其与ASP.NET路由系统有类似的设计,都能找到 ...

  3. 通过mybatis向数据库中插入日期数据

    遇到的问题: 通过mybatis向数据库中插入日期格式数据,发现只有年月日, 没有小时分钟和秒 当你想在实体类中使用java.util.Date类型,而且还想在数据库中保存时分秒时, 解决办法: 你可 ...

  4. 从0开始学Python---01

    1.开始 Vim  test.py #!/usr/bin/python print "hello,world!"; chmod +x test.py ./test.py 2.基本知 ...

  5. unigui在阿里云服务器上部署

    unigui在阿里云服务器上部署 客户租用了阿里云WINDOWS2008服务器,部署UNIGUI发现死活不行,WINDOWS2008自带的IE9浏览器打开URL,卡死在loading...... 我远 ...

  6. Spring IOC 容器源码分析 - 余下的初始化工作

    1. 简介 本篇文章是"Spring IOC 容器源码分析"系列文章的最后一篇文章,本篇文章所分析的对象是 initializeBean 方法,该方法用于对已完成属性填充的 bea ...

  7. 网络基础、ftp任务(进度条、计算文件大小、断点续传、搭建框架示例)

    一.网络基础 1.端口,是什么?为什么要有端口? 端口是为了将同一个电脑上的不同程序进行隔离. IP是找电脑:端口是找电脑上的应用程序: 端口范围:1 – 65535 :    1 - 1024 不要 ...

  8. 用mac的safari浏览器调试ios手机的网页

    iOS 6给Safari带来了远程的Web检查器工具. 一.参考链接 ios开发者文档 safari开发者工具 remote debugging safari 二.设置iphone 设置 -> ...

  9. 开发ASP.NET MVC 在线录音录像(音视频录制并上传)

    最近有个在线招聘录音的开发需求,需要在招聘网站上让招聘者上传录音和视频. 找到两个不错的javascript开源,可以在除了IE以外的浏览器运行. https://github.com/mattdia ...

  10. [0day]微软XP系统右键菜单任意DLL却持

    作者:K8哥哥只要在DLL上右键就被却持 任意DLL名称 任意位置 (其实是EXPLOR) 这个漏洞早已存在,08年的时候就发现了(当时编译某个DLL源码) 在DLL上右键看属性的时候崩溃了,当时就想 ...