https://www.patest.cn/contests/gplt/L2-001

题解:求最短路的条数,并输出点的权值最大的路径,用priority_queue会wa两个点,原因不明。

    于是又学了另外一种dijkstra

坑:L3的天梯地图是同一个模板的题目,结果代码交上去有一个点过不了。。。。

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <math.h>
#include <string.h>
#include <string>
#include <map>
#include<stack>
#include<set>
#include<string.h>
#define pb push_back
#define _for(i, a, b) for (int i = (a); i<(b); ++i)
#define _rep(i, a, b) for (int i = (a); i <= (b); ++i) using namespace std;
const int N = + ; int num[N];
int E[N][N];
int dis[N];
vector<int> path;
int ans[N];
int sum[N];
int last[N];
void init() {
_for(i, , N) {
dis[i] = 1e9;
//ans[i] = 1; }
}
int main() {
init();
memset(E, -, sizeof(E));
int n;
int m, s, d;
cin >> n >> m >> s >> d;
set<int>vis;
_for(i, , n) {
cin >> num[i]; sum[i] = num[i]; vis.insert(i);
}
_for(i, , m) {
int x, y, z;
cin >> x >> y >> z;
E[x][y] = E[y][x] = z;
} last[s] = -; ans[s] = ; dis[s] = ;
for (int now = s; vis.size()>; vis.erase(now)) {
int mn = 1e9;
_for(i, , n) {
if (dis[i] < mn&&vis.count(i) == ) {
now = i;
mn = dis[i];
}
}
_for(j, , N) if(E[now][j]!=-){ if (dis[j] > dis[now] + E[now][j]) {
dis[j] = dis[now] + E[now][j];
last[j] = now;
sum[j] = sum[now] + num[j];
ans[j] = ans[now];
}
else if (dis[j] == dis[now] + E[now][j]) {
ans[j] += ans[now];
if (sum[j] < sum[now] + num[j]) {
last[j] = now;
sum[j] = sum[now] + num[j];
}
}
}
} cout << ans[d] << ' ' << sum[d] << endl;
stack<int>st;
for (int i = d; i != -; i = last[i]) {
st.push(i);
} cout << st.top(); st.pop();
while (!st.empty()) { cout << ' ' << st.top(); st.pop(); } system("pause"); }

附上wa2的代码,以后研究(求助)

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <math.h>
#include <string.h>
#include <string>
#include <map>
#include<stack>
#define pb push_back
#define _for(i, a, b) for (int i = (a); i<(b); ++i)
#define _rep(i, a, b) for (int i = (a); i <= (b); ++i) using namespace std;
const int N = +; int num[N];
vector< pair<int, int> > E[N];
int dis[N];
vector<int> path[N];
int ans[N];
int sum[N];
int last[N]; void init() {
_for(i, , N) {
dis[i] = 1e9;
ans[i] = ;
//last[i] = -1;
}
}
int main() {
init();
int n;
int m, s, d;
cin >> n >> m >> s >> d;
_for(i, , n) { cin >> num[i]; sum[i] = num[i]; }
_for(i, , m) {
int x, y, z;
cin >> x >> y >> z;
E[x].pb(make_pair(y, z));
E[y].pb(make_pair(x, z)); }
priority_queue<pair<int, int> >Q;
dis[s] = ;
path[s].pb(s);
Q.push(make_pair(-dis[s], s)); last[s] = -;
while (!Q.empty()) {
int now = Q.top().second;
Q.pop();
_for(i, , E[now].size()) {
int v = E[now][i].first;//about update the node,consider every step we enumerate all the nodes linked to the priority node ,if it is better put it into a vector temporarily.
if (dis[v] > dis[now] + E[now][i].second) {
dis[v] = dis[now] + E[now][i].second;
last[v] = now;
sum[v] = sum[now] + num[v];
ans[v] = ans[now];
Q.push(make_pair(-dis[v], v));
//here is the problem ,when we update dis,it's easy,but about path,we need to change the before ones
}
else if (dis[v] == dis[now] + E[now][i].second) {
ans[v] += ans[now];
if (sum[v]<sum[now]+num[v]) {
last[v] = now;
sum[v] = sum[now] + num[v];
Q.push(make_pair(-dis[v], v)
} }
}
}
cout << ans[d] << ' ' << sum[d] << endl;
stack<int> st;
for (int i = d; i != -; i = last[i]) {
st.push(i);
}
cout << st.top(); st.pop();
while (!st.empty()) { cout <<' '<< st.top(); st.pop(); }
system("pause"); }

L3的天梯地图:

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <math.h>
#include <string.h>
#include <string>
#include <map>
#include<stack>
#include<set>
#include<string.h>
#define pb push_back
#define _for(i, a, b) for (int i = (a); i<(b); ++i)
#define _rep(i, a, b) for (int i = (a); i <= (b); ++i) using namespace std;
const int N = + ; int num[N];
int E[N][N],R[N][N];
int dis[N];
int di[N];
vector<int> path;
int ans[N];
int sum[N];
int last[N];
void init() {
_for(i, , N) {
dis[i] = 1e9;
//ans[i] = 1;
di[i] = 1e9;
}
}
int main() {
init();
memset(E, -, sizeof(E));
int n;
int m, s, d;
cin >> n >> m;
set<int>vis;
_for(i, , n) {
sum[i] = ; vis.insert(i); num[i] = ;
}
_for(i, , m) {
int x, y, z;
cin >> x >> y >> z;
int len, tim;
cin >> len >> tim;
if (z == )
E[x][y] = E[y][x] = len;
else E[x][y] = len;
if (z == )
R[x][y] = R[y][x] = tim;
else R[x][y] = tim;
}
cin >> s >> d; _for(i, , n) {
sum[i] = ; vis.insert(i); num[i] = ;
}
last[s] = -; ans[s] = ; di[s] = ;
for (int now = s; vis.size()>; vis.erase(now)) {
int mn = 1e9;
_for(i, , n) {
if (di[i] < mn&&vis.count(i) == ) {
now = i;
mn = di[i];
}
}
_for(j, , N) if (E[now][j] != -) { if (di[j] > di[now] + R[now][j]) {
di[j] = di[now] + R[now][j];
last[j] = now;
sum[j] = sum[now] + num[j];
ans[j] = ans[now];
}
else if (di[j] == di[now] + R[now][j]) {
ans[j] += ans[now];
if (sum[j] > sum[now] + num[j]) {
last[j] = now;
sum[j] = sum[now] + num[j];
}
}
}
} stack<int> st1;
for (int i = d; i != -; i = last[i]) {
st1.push(i);
} //printf("Time = %d: ", di[d]);
//cout << st.top(); st.pop();
//while (!st.empty()) { cout << " => " << st.top(); st.pop(); }
//cout << endl; _for(i, , n) {
sum[i] = ; vis.insert(i); num[i] = ;
}
last[s] = -; ans[s] = ; dis[s] = ;
for (int now = s; vis.size()>; vis.erase(now)) {
int mn = 1e9;
_for(i, , n) {
if (dis[i] < mn&&vis.count(i) == ) {
now = i;
mn = dis[i];
}
}
_for(j, , N) if (E[now][j] != -) { if (dis[j] > dis[now] + E[now][j]) {
dis[j] = dis[now] + E[now][j];
last[j] = now;
sum[j] = sum[now] + num[j];
ans[j] = ans[now];
}
else if (dis[j] == dis[now] + E[now][j]) {
ans[j] += ans[now];
if (sum[j] > sum[now] + num[j]) {
last[j] = now;
sum[j] = sum[now] + num[j];
}
}
}
} stack<int> st2;
for (int i = d; i != -; i = last[i]) {
st2.push(i);
}
if (st1 == st2) {
printf("Time = %d; Distance = %d: ", di[d],dis[d]);
cout << st2.top(); st2.pop();
while (!st2.empty()) { cout << " => " << st2.top(); st2.pop(); }
}
else {
printf("Time = %d: ", di[d]);
cout << st1.top(); st1.pop();
while (!st1.empty()) { cout << " => " << st1.top(); st1.pop(); }
cout << endl;
printf("Distance = %d: ", dis[d]);
cout << st2.top(); st2.pop();
while (!st2.empty()) { cout << " => " << st2.top(); st2.pop(); }
cout << endl;
}
system("pause"); }

CCCC L2-001 紧急救援 floyd改的dijkstra模板 (记录路径) L3 天梯地图的更多相关文章

  1. 天梯 L2 紧急救援 (dijkstra变形+记录路径)

    L2-001 紧急救援 (25 分) 作为一个城市的应急救援队伍的负责人,你有一张特殊的全国地图.在地图上显示有多个分散的城市和一些连接城市的快速道路.每个城市的救援队数量和每一条连接两个城市的快速道 ...

  2. L2-001. 紧急救援---(Dijkstra,记录路径)

    https://www.patest.cn/contests/gplt/L2-001 L2-001. 紧急救援 时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 ...

  3. [Python] 弗洛伊德(Floyd)算法求图的直径并记录路径

    相关概念 对于一个图G=(V, E),求图中两点u, v间最短路径长度,称为图的最短路径问题.最短路径中最长的称为图的直径. 其中,求图中确定的某两点的最短路径算法,称为单源最短路径算法.求图中任意两 ...

  4. HDU-2544 最短路 Dijkstra模板题

    题目链接:https://vjudge.net/problem/HDU-2544 题意: 题目要求找到节点1到节点n之间的一条最短路 分析: Dijkstra模板题 单源最短路径,可以用dijkstr ...

  5. Minimum Transport Cost(floyd+二维数组记录路径)

    Minimum Transport Cost Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/O ...

  6. 训练指南 UVA - 11374(最短路Dijkstra + 记录路径 + 模板)

    layout: post title: 训练指南 UVA - 11374(最短路Dijkstra + 记录路径 + 模板) author: "luowentaoaa" catalo ...

  7. HDU-1595Find the longest of shortest(最短路径的最长路Dijkstra+记录路径)

    Marica is very angry with Mirko because he found a new girlfriend and she seeks revenge.Since she do ...

  8. HDU 2544 最短路(floyd+bellman-ford+spfa+dijkstra队列优化)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2544 题目大意:找点1到点n的最短路(无向图) 练一下最短路... dijkstra+队列优化: #i ...

  9. L2-001. 紧急救援 (Dijkstra算法打印路径)

    作为一个城市的应急救援队伍的负责人,你有一张特殊的全国地图.在地图上显示有多个分散的城市和一些连接城市的快速道路.每个城市的救援队数量和每一条连接两个城市的快速道路长度都标在地图上.当其他城市有紧急求 ...

随机推荐

  1. html5页面平滑切换实现以及问题(20160120更新)

    注:本文是基于手机端 Hybrid APP 讨论,而不是普通的PC端网页 >> 之前的页面跳转方式: 比如有这两个页面:A.html  B.html,  A B 是纯HTML实现,没有采用 ...

  2. 10 -- 深入使用Spring -- 5...2 在Spring中使用Quartz

    10.5.2 在Spring中使用Quartz Spring 的任务调度抽象层简化了任务调度,在Quartz基础上提供了更好的调度抽象.本系统使用Quartz框架来完成任务调度,创建Quartz的作业 ...

  3. c#事件Unity与.Net对比

    今天在看Unity3d的书,发现上面的调用事件比较特殊,比如说按钮事件 该方法写在OnGUI方法中if(GUILayout.Button("按钮1")) { //执行事件的处理 } ...

  4. Python爬虫学习笔记-1.Urllib库

    urllib 是python内置的基本库,提供了一系列用于操作URL的功能,我们可以通过它来做一个简单的爬虫. 0X01 基本使用 简单的爬取一个页面: import urllib2 request ...

  5. SpringBoot(八)-- 日志

    一.介绍 SpringBoot内部使用Commons Logging来记录日志,但也保留外部接口可以让一些日志框架来进行实现,例如Java Util Logging,Log4J2还有Logback.如 ...

  6. Win10 我的电脑 -- 右键点击管理打不开

    右键点击我的电脑 -- 管理,出现如下错误,这是删除快捷方式小箭头导致的 解决方法: win+R 输入 regedit,分别在 HKEY_CLASSES_ROOT\piffile HKEY_CLASS ...

  7. 【LeetCode OJ】Remove Element

    题目:Given an array and a value, remove all instances of that value in place and return the new length ...

  8. 从经典问题来看 Copy 方法

    经典面试题:为什么 NSString 类型成员变量的修饰属性用 copy 而不是 strong (或 retain ) ? 在初学 iOS 的时候,可能会被灌输这么一个常识,切记 NSString 的 ...

  9. RabbitMQ笔记四:Binding,Queue,Message概念

    Binding详解   黄线部分就是binding Exchange与Exchange,Queue之间的虚拟连接,Binding中可以包含Routing key或者参数   创建binding 注意: ...

  10. String例子

    #include <string.h> class String{ public: String(const String& str); String(const char* st ...