DIjkstra(反向边) POJ 3268 Silver Cow Party || POJ 1511 Invitation Cards
题意:有向图,所有点先走到x点,在从x点返回,问其中最大的某点最短路程
分析:对图正反都跑一次最短路,开两个数组记录x到其余点的距离,这样就能求出来的最短路以及回去的最短路.
POJ 3268
//#include <bits/stdc++.h>
#include <cstdio>
#include <queue>
#include <algorithm>
#include <cstring>
using namespace std; typedef long long ll;
const int N = 1e6 + 5;
const int E = N;
const int INF = 0x3f3f3f3f;
struct Edge {
int u, v, w, nex;
Edge() {}
Edge(int u, int v, int w, int nex) : u (u), v (v), w (w), nex (nex) {}
bool operator < (const Edge &r) const {
return w > r.w;
}
}edge[2][E];
int head[N];
int d[2][N];
bool vis[N];
int n, m, x, e; inline int read(void) {
int f = 1, ret = 0; char ch = getchar ();
while (ch > '9' || ch < '0') {
if (ch == '-') f = -1;
ch = getchar ();
}
while (ch <= '9' && ch >= '0') {
ret = ret * 10 + ch - '0';
ch = getchar ();
}
return ret * f;
} void init(void) {
memset (head, -1, sizeof (head));
e = 0;
} void add_edge(int u, int v, int w) {
edge[0][e] = Edge (u, v, w, head[u]);
head[u] = e++;
} void build_re_graph(void) {
memset (head, -1, sizeof (head));
e = 0;
for (int i=0; i<m; ++i) {
edge[1][e] = Edge (edge[0][i].v, edge[0][i].u, edge[0][i].w, head[edge[0][i].v]);
head[edge[0][i].v] = e++;
}
} void SPFA(int s, int tp) {
memset (d[tp], INF, sizeof (d[tp]));
memset (vis, false, sizeof (vis));
d[tp][s] = 0; vis[s] = true;
queue<int> que; que.push (s);
while (!que.empty ()) {
int u = que.front (); que.pop ();
vis[u] = false;
for (int i=head[u]; ~i; i=edge[tp][i].nex) {
int v = edge[tp][i].v, w = edge[tp][i].w;
if (d[tp][v] > d[tp][u] + w) {
d[tp][v] = d[tp][u] + w;
if (!vis[v]) {
vis[v] = true; que.push (v);
}
}
}
}
} void Dijkstra(int s, int tp) {
memset (vis, false, sizeof (vis));
memset (d[tp], INF, sizeof (d[tp])); d[tp][s] = 0;
priority_queue<Edge> que; que.push (Edge (0, s, d[tp][s], 0));
while (!que.empty ()) {
int u = que.top ().v; que.pop ();
if (vis[u]) continue;
for (int i=head[u]; ~i; i=edge[tp][i].nex) {
int v = edge[tp][i].v, w = edge[tp][i].w;
if (!vis[v] && d[tp][v] > d[tp][u] + w) {
d[tp][v] = d[tp][u] + w; que.push (Edge (0, v, d[tp][v], 0));
}
}
}
} int get_max(void) {
int ret = 0;
for (int i=1; i<=n; ++i) {
ret = max (ret, d[0][i] + d[1][i]);
}
return ret;
} int main(void) {
while (scanf ("%d%d%d", &n, &m, &x) == 3) {
init ();
for (int u, v, w, i=0; i<m; ++i) {
scanf ("%d%d%d", &u, &v, &w);
add_edge (u, v, w);
}
//SPFA (x, 0);
Dijkstra (x, 0);
build_re_graph ();
//SPFA (x, 1);
Dijkstra (x, 1);
int ans = get_max ();
printf ("%d\n", ans);
} return 0;
}
还有一道类似的题目,是求最大和,其实都是一样的
POJ 1511
//#include <bits/stdc++.h>
#include <cstdio>
#include <queue>
#include <algorithm>
#include <cstring>
using namespace std; typedef long long ll;
const int N = 1e6 + 5;
const int E = N;
const int INF = 0x3f3f3f3f;
struct Edge {
int u, v, w, nex;
Edge() {}
Edge(int u, int v, int w, int nex) : u (u), v (v), w (w), nex (nex) {}
bool operator < (const Edge &r) const {
return w > r.w;
}
}edge[2][E];
int head[N];
int d[N];
bool vis[N];
int n, m, e; inline int read(void) {
int f = 1, ret = 0; char ch = getchar ();
while (ch > '9' || ch < '0') {
if (ch == '-') f = -1;
ch = getchar ();
}
while (ch <= '9' && ch >= '0') {
ret = ret * 10 + ch - '0';
ch = getchar ();
}
return ret * f;
} void init(void) {
memset (head, -1, sizeof (head));
e = 0;
} void add_edge(int u, int v, int w) {
edge[0][e] = Edge (u, v, w, head[u]);
head[u] = e++;
} void build_re_graph(void) {
memset (head, -1, sizeof (head));
e = 0;
for (int i=0; i<m; ++i) {
edge[1][e] = Edge (edge[0][i].v, edge[0][i].u, edge[0][i].w, head[edge[0][i].v]);
head[edge[0][i].v] = e++;
}
} void SPFA(int s, int tp) {
memset (d, INF, sizeof (d));
memset (vis, false, sizeof (vis));
d[s] = 0; vis[s] = true;
queue<int> que; que.push (s);
while (!que.empty ()) {
int u = que.front (); que.pop ();
vis[u] = false;
for (int i=head[u]; ~i; i=edge[tp][i].nex) {
int v = edge[tp][i].v, w = edge[tp][i].w;
if (d[v] > d[u] + w) {
d[v] = d[u] + w;
if (!vis[v]) {
vis[v] = true; que.push (v);
}
}
}
}
} ll get_sum(void) {
ll ret = 0;
for (int i=1; i<=n; ++i) {
ret += d[i];
}
return ret;
} int main(void) {
int T; scanf ("%d", &T);
while (T--) {
scanf ("%d%d", &n, &m);
init ();
for (int u, v, w, i=0; i<m; ++i) {
//scanf ("%d%d%d", &u, &v, &w);
u = read (); v = read (); w = read ();
add_edge (u, v, w);
}
SPFA (1, 0);
ll ans = get_sum ();
build_re_graph ();
SPFA (1, 1);
ans += get_sum ();
printf ("%lld\n", ans);
} return 0;
}
DIjkstra(反向边) POJ 3268 Silver Cow Party || POJ 1511 Invitation Cards的更多相关文章
- POJ 3268 Silver Cow Party 最短路—dijkstra算法的优化。
POJ 3268 Silver Cow Party Description One cow from each of N farms (1 ≤ N ≤ 1000) conveniently numbe ...
- POJ 3268 Silver Cow Party (最短路径)
POJ 3268 Silver Cow Party (最短路径) Description One cow from each of N farms (1 ≤ N ≤ 1000) convenientl ...
- POJ 3268 Silver Cow Party (双向dijkstra)
题目链接:http://poj.org/problem?id=3268 Silver Cow Party Time Limit: 2000MS Memory Limit: 65536K Total ...
- POJ 3268 Silver Cow Party 最短路
原题链接:http://poj.org/problem?id=3268 Silver Cow Party Time Limit: 2000MS Memory Limit: 65536K Total ...
- POJ 3268——Silver Cow Party——————【最短路、Dijkstra、反向建图】
Silver Cow Party Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Su ...
- POJ 3268 Silver Cow Party (最短路dijkstra)
Silver Cow Party 题目链接: http://acm.hust.edu.cn/vjudge/contest/122685#problem/D Description One cow fr ...
- Poj 3268 Silver cow party 迪杰斯特拉+反向矩阵
Silver cow party 迪杰斯特拉+反向 题意 有n个农场,编号1到n,每个农场都有一头牛.他们想要举行一个party,其他牛到要一个定好的农场中去.每个农场之间有路相连,但是这个路是单向的 ...
- POJ 3268 Silver Cow Party (Dijkstra)
Silver Cow Party Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 13982 Accepted: 6307 ...
- POJ 3268 Silver Cow Party (Dijkstra)
Silver Cow Party Time Limit: 2000MS Memory Limit: 65536K Total Submissions:28457 Accepted: 12928 ...
随机推荐
- 9.27js拓展、bootstrap菜鸟教程
js(点击挂上 与 点击移除) <div id="dd" style="width:200px; height:200px; background-color:#6 ...
- supersr--图形上下文的注意点
- (void)test { // 不要自己调用drawRect:方法的原因: // 当系统调用drawRect:方法之前, 会创建一个与当前UIView的layer相关的图形上下文, 这样就可以保证 ...
- hdu 2159 FATE
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2159 思路:二维完全背包,状态转移方程为: f[j][l]=max(f[j][l],f[j-b[i]] ...
- js获取缓存数据
后台:request.setAttribute("type", type); 前台js获取:var type = "${type}";
- Python中format的用法
自python2.6开始,新增了一种格式化字符串的函数str.format(),可谓威力十足.那么,他跟之前的%型格式化字符串相比,有什么优越的存在呢?让我们来揭开它羞答答的面纱.语法 它通过{}和: ...
- 傻瓜式十分钟免费开启 HTTPS,是时候为你的站点加上小绿锁了
http://gold.xitu.io/entry/57df65690bd1d00057f9455b?from=singlemessage&isappinstalled=0 原文链接:http ...
- WCF分布式开发必备知识(3):Web Service 使用
参考地址:http://www.cnblogs.com/zhili/p/WebService.html 一.WebService概述 SOAP.WSDL.UDDISOAP(Simple Object ...
- revert merge会出现的问题
比如当我们git revert的时候, git revert Git会抱怨: is a merge but no -m option was given 这是因为你revert的那个commit是一个 ...
- 攻城狮在路上(叁)Linux(十二)--- Linux的目录与路径
一.相对路径与绝对路径: A.绝对路径:由根目录/开始写起的路径,例如 /usr/share/doc B.相对路径:不是由根目录/开始写起的路径. 二.目录的相关操作: 1.cd: 目录切换 cd ~ ...
- Oralce sysaux WRH$_ACTIVE_SESSION_HISTORY清理
In this Document Symptoms Cause Solution References Symptoms sysaux表空間的WRH$_ACTIVE_SESSION_HISTORY表變 ...