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 ...
随机推荐
- ios手势
iOS 手势操作:拖动.捏合.旋转.点按.长按.轻扫.自定义 大 中 小 1.UIGestureRecognizer 介绍 手势识别在 iOS 中非常重要,他极大地提高了移动设备的使用便捷性. i ...
- August 17th 2016 Week 34th Wednesday
Life is painting a picture, not doing a sum. 生活就像是绘画,而不是做算术. I am too serious about digits. All what ...
- 建立controller
复制controller,重建controller 改: @Controller("[productController]") @RequestMapping("/[pr ...
- chaper3_exercise_Uva1585_score
#include<iostream> #include<string> using namespace std; int main(void) { , j = ; string ...
- Android Service 与 IntentService
Service 中的耗时操作必须 在 Thread中进行: IntentService 则直接在 onHandleIntent()方法中进行
- PHP魔术方法在框架中的应用
class usermodel{ protected $email='user@163.com'; protected $data=array(); public function __set($k, ...
- 注意kvm在安装虚机的时候不能把存放虚机的文件放在/root 下面
如果放在/root下面会报错: WARNING KVM acceleration not available, using 'qemu' Starting install... Creating st ...
- [LeetCode] Word Break II (TLE)
Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each ...
- scala中的trait
这里的trait字面意思是特质或者特征,这个词翻译成特征比较合适.它的意义和java,c#中接口很类似.但是trait支持部分实现,也就是说可以在scala的trait中可以实现部分方法. 下面我们以 ...
- apt-get常见错误——Unmet dependencies
转自:http://blog.sina.com.cn/s/blog_4980828b0100zicn.html 安装错误:“E: Unmet dependencies.”原因:非正常停止apt-get ...