hdu-3790最短路刷题
title: hdu-3790最短路刷题
date: 2018-10-20 14:50:31
tags:
- acm
- 刷题
categories: - ACM-最短路
概述
一道最短路的水题,,,尽量不看以前的代码打出来,,,熟悉一下dijkstra的格式和链式前向星的写法,,,,
虽然是水题,,,但是一开始没考虑取费用最短的wa了一发,,,,QAQ
分析
链式前向星存图,,再加一个数组保存源点到每个点的费用cst[maxm],,,注意取最少的费用
代码
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <queue>
using namespace std;
const int maxn = 1e3 + 10;
const int maxm = 1e5 + 10;
const int inf = 0x3f3f3f3f;
int head[maxm << 1];
bool vis[maxn];
int dis[maxm];
int cst[maxm];
int cnt;
int n , m;
struct edge
{
int to;
int w;
int c;
int last;
}edge[maxm << 1];
void addedge(int u , int v , int w , int c)
{
edge[cnt].to = v;
edge[cnt].w = w;
edge[cnt].c = c;
edge[cnt].last = head[u];
head[u] = cnt++;
}
struct node
{
int u;
int w;
node(int _u , int _w):u(_u) , w(_w){}
bool operator < (const node &res) const
{
return w > res.w;
}
};
void dijkstra(int n , int s)
{
for(int i = 1; i <= n; ++i)
dis[i] = (i == s) ? 0 : inf;
memset(cst , inf , sizeof cst);cst[s] = 0;
memset(vis , false , sizeof vis);
priority_queue<node> q;
while(!q.empty()) q.pop();
q.push(node(s , 0));
while(!q.empty())
{
node x = q.top();q.pop();
int u = x.u;
if(vis[u]) continue;
vis[u] = true;
for(int i = head[u] ; ~i; i = edge[i].last)
{
int to = edge[i].to;
int w = edge[i].w;
int c = edge[i].c;
if(!vis[to] && dis[u] + w <= dis[to])
{
dis[to] = dis[u] + w;
//if(cst[u] + c < cst[to])
cst[to] = cst[u] + c;
q.push(node(to , dis[to]));
}
}
}
}
int main()
{
while(scanf("%d%d" , &n , &m) && n && m)
{
cnt = 0;
memset(head , -1 , sizeof head);
int u , v , w , c;
for(int i = 1; i <= m; ++i)
{
scanf("%d%d%d%d" , &u , &v , &w , &c);
addedge(u , v , w , c);
addedge(v , u , w , c);
}
int s , t;
scanf("%d%d" , &s , &t);
dijkstra(n , s);
printf("%d %d\n" , dis[t] , cst[t]);
}
}
//最短路相等时注意取费用最短的
//
//5 7
//1 2 5 5
//2 3 4 5
//1 3 4 6
//3 4 2 2
//3 5 4 7
//4 5 2 4
//1 3 4 4
//1 5
//8 10
差不多记住了的dijkatra的代码,,,继续继续
(end)
hdu-3790最短路刷题的更多相关文章
- HDU 2544 最短路(模板题)
求1到N的最短路径,模板题,以1为源点,用dijkstra算法(可以用优先级队列优化) #include <iostream> #include <algorithm> #in ...
- hdu 2066 最短路水题
题意:给出多个可选择的起始点和终点,求最短路 思路:执行起始点次的spfa即可 代码: #include<iostream> #include<cstdio> #include ...
- HDU 自动刷题机 Auto AC (轻轻松松进入HDU首页)
前言: 在写这篇文章之前,首先感谢给我思路以及帮助过我的学长们 以下4篇博客都是学长原创,其中有很多有用的,值得学习的东西,希望能够帮到大家! 1.手把手教你用C++ 写ACM自动刷题神器(冲入HDU ...
- 手把手教你用C++ 写ACM自动刷题神器(冲入HDU首页)
转载注明原地址:http://blog.csdn.net/nk_test/article/details/49497017 少年,作为苦练ACM,通宵刷题的你 是不是想着有一天能够荣登各大OJ榜首,俯 ...
- UESTC 30 &&HDU 2544最短路【Floyd求解裸题】
最短路 Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submiss ...
- 教你用python写:HDU刷题神器
声明:本文以学习为目的,请不要影响他人正常判题 HDU刷题神器,早已被前辈们做出来了,不过没有见过用python写的.大一的时候见识了学长写这个,当时还是一脸懵逼,只知道这玩意儿好屌-.时隔一年,决定 ...
- HDU 5521.Meeting 最短路模板题
Meeting Time Limit: 12000/6000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total ...
- HDU 2544 最短路(模板题——Floyd算法)
题目: 在每年的校赛里,所有进入决赛的同学都会获得一件很漂亮的t-shirt.但是每当我们的工作人员把上百件的衣服从商店运回到赛场的时候,却是非常累的!所以现在他们想要寻找最短的从商店到赛场的路线,你 ...
- 【刷题】HDU 2222 Keywords Search
Problem Description In the modern time, Search engine came into the life of everybody like Google, B ...
随机推荐
- 关于node的setTimeout的延时最大限制
node的setTimeout有最大值限制,最大值为2^31-1.一旦超过了最大值,其效果就跟延时值为0的情况一样,也就是马上执行.chrome测试并未发现该问题,解决方案如下,重写setTimeou ...
- Python核心编程——Chapter15
正则表达式在脚本语言里是最重要的一部分,这部分的题目真的不容怠慢. 开始这部分的题目的解答! 15.1识别下列字符串:bat,bit,but,hat,hit和hut. >>> imp ...
- [转]caffe中solver.prototxt参数说明
https://www.cnblogs.com/denny402/p/5074049.html solver算是caffe的核心的核心,它协调着整个模型的运作.caffe程序运行必带的一个参数就是so ...
- Java NIO之拥抱Path和Files
Java面试通关手册(Java学习指南)github地址(欢迎star和pull):https://github.com/Snailclimb/Java_Guide 历史回顾: Java NIO 概览 ...
- sqlplus设置长度
1.set linesize 100 2.col XX format a30 3.col XXX format 9,999,999,999 3.set heading off 表头不显示
- rollup&&cube
group by 擴展 rollup&&cube --按job分組計算不同job的匯總工資 SELECT job, SUM (sal) FROM emp GROUP BY ...
- 渗透测试的WINDOWS NTFS技巧集合
译者:zzzhhh 这篇文章是来自SEC Consult Vulnerability Lab的ReneFreingruber (@ReneFreingruber),分享了过去几年从各种博客文章中收集的 ...
- centos6 yum方式升级内核【转】
最近没有时间好久没有写文章了,今天由于需要安装docker学习虚拟容器的知识,需要升级OS的内核.目前我这边使用的OS是centos6.5,内核是2.6版本的,如下: cat /etc/issue u ...
- MySQL参数设置
InnoDB配置 从MySQL 5.5版本开始,InnoDB就是默认的存储引擎并且它比任何其它存储引擎的使用要多得多.那也是为什么它需要小心配置的原因. 1 innodb_file_per_table ...
- 打包egg
scrapyd-deploy -p chahao -v 1.0 --build-egg chahao.egg