博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Fire-Fighting Hero(多源最短路和单源最短路)
阅读量:5291 次
发布时间:2019-06-14

本文共 1743 字,大约阅读时间需要 5 分钟。

题:https://nanti.jisuanke.com/t/41349

分析:对于hero来说,走单源最短路,然后遍历dis数组中的最大值即可找到,对于消防员来说,走多源最短路,只需要建个超级起点连接各个消防点,边权为0走spfa即可出dis数组

注意:得无向边

#include
using namespace std;typedef long long ll;const ll INF=1e18;const int M=2e3+3;ll dist[M];struct node{ int v,nextt; ll w;}e[(M*M)<<1];int tot,vis[M],head[M],a[M],sign[M];void addedge(int u,int v,ll w){ e[tot].v=v; e[tot].nextt=head[u]; e[tot].w=w; head[u]=tot++;}void spfa(int s){ queue
q; while(!q.empty()) q.pop(); memset(dist,0x7f,sizeof dist); //cout<
<
dist[u]+e[i].w) { dist[v]=dist[u]+e[i].w; if(!vis[v]) { vis[v]=true; q.push(v); } } } }}int main(){ int t; scanf("%d",&t); while(t--){ int n,m,he,k,C,s=0; scanf("%d%d%d%d%d",&n,&m,&he,&k,&C); for(int i=0;i<=n;i++) head[i]=-1,sign[i]=0; tot=0; for(int i=1;i<=k;i++) scanf("%d",&a[i]),sign[a[i]]=1; while(m--) { int u,v; ll w; scanf("%d%d%lld",&u,&v,&w); addedge(u,v,w); addedge(v,u,w); } spfa(he); ll maxxhe=0ll; for(int i=1;i<=n;i++) maxxhe=max(maxxhe,dist[i]); for(int i=1;i<=k;i++) addedge(s,a[i],0); spfa(s); ll maxxren=0ll; for(int i=1;i<=n;i++){ if(sign[i]==0) maxxren=max(dist[i],maxxren); } maxxren*=1ll*C; // cout<
<<"!!"<
<
View Code

 

转载于:https://www.cnblogs.com/starve/p/11488773.html

你可能感兴趣的文章
Access Jira RESTful API by cURL
查看>>
python tkinter GUI绘制,以及点击更新显示图片
查看>>
Spark基础脚本入门实践3:Pair RDD开发
查看>>
HDU4405--Aeroplane chess(概率dp)
查看>>
RIA Test:try catch 对 Error #1009 (无法访问空对象引用的属性或方法)的处理
查看>>
python使用easyinstall安装xlrd、xlwt、pandas等功能模块的方法
查看>>
CS0103: The name ‘Scripts’ does not exist in the current context解决方法
查看>>
20130330java基础学习笔记-语句_for循环嵌套练习2
查看>>
Spring面试题
查看>>
窥视SP2010--第一章节--SP2010开发者路线图
查看>>
MVC,MVP 和 MVVM 的图示,区别
查看>>
C语言栈的实现
查看>>
代码为什么需要重构
查看>>
TC SRM 593 DIV1 250
查看>>
SRM 628 DIV2
查看>>
2018-2019-2 20165314『网络对抗技术』Exp5:MSF基础应用
查看>>
统计单词,字符,和行
查看>>
《Akka应用模式:分布式应用程序设计实践指南》读书笔记8
查看>>
jQuery垂直滑动切换焦点图
查看>>
Python-S9-Day127-Scrapy爬虫框架2
查看>>