本文主要是介绍51nod 2650 最短缩减路径,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
快速链接
- 原题链接
- 题目大意
- 输入格式
- 输出格式
- 数据范围
- 解题思路
- 上代码
原题链接
51nod 2650
题目类型: 2 2 2级题 ♦ ♦ {\color{green}{♦♦}}{\color{lightgreen}{}}{\color{yellow}{}}{\color{orange}{}}{\color{red}{}} ♦♦
AC记录:Accepted
题目大意
给出一张包含 n n n个节点、 m m m条边的无向图,现在你可以任意取仅一条边,将它的边权变成 ⌊ 1 2 × 边 权 ⌋ \left\lfloor\frac{1}{2}\times 边权\right\rfloor ⌊21×边权⌋,请你求出此时图上两点 s , t s,t s,t间可能的最短路径长度。
输入格式
第一行两个数 n , m n,m n,m,分别表示节点数和边数,以空格隔开;
之后 m m m行,每行3个数 u , v , w i u,v,w_i u,v,wi,表示点 u u u和 v v v间有一条权值为 w i w_i wi的边,
最后一行,两个数 s , t s,t s,t表示选择的两个点,以空格隔开。
输出格式
输出一个数,表示 s , t s,t s,t间最短路径的长度。
S a m p l e \mathbf{Sample} Sample I n p u t \mathbf{Input} Input
4 3
1 2 6
1 3 4
2 4 2
3 4
S a m p l e \mathbf{Sample} Sample O u t p u t \mathbf{Output} Output
9
H i n t & E x p l a i n \mathbf{Hint\&Explain} Hint&Explain
样例所示的图如下图所示。
把连接 1 , 2 1,2 1,2的边变成他的 1 2 \frac12 21,此时总路径最短,是4+3+2=9
。
数据范围
对于 100 % 100\% 100%的数据, 其 中 1 ≤ n ≤ 500 , 1 ≤ m ≤ 50000 , 1 ≤ 边 权 ≤ 500000 其中1\le n\le 500,1\le m\le 50000,1\le 边权\le 500000 其中1≤n≤500,1≤m≤50000,1≤边权≤500000,保证所有边权为偶数。
解题思路
这题可以用 S p f a Spfa Spfa解决。
很多人看到这一题,立马想到直接找最大的一条边减半,就可以得到最小值,但是并不对,如下面的例子:
3 3
1 2 2
2 3 2
1 3 100
1 3
依照上面的思路,把 100 100 100那条边减半,答案应该为2+2=4
。但实际答案却是2+1=3
。
那么正确的解法是什么呢?
解法一:
建一个复制图,再把复制图和原图连接起来,样例如下图。
蓝边代表原图,绿边代表复制图,红边代表权值减半的边。
由于建了这个图之后,从蓝图走到绿图的方法只有通过红边,即把权值减半,而绿图又不可能走到蓝图,所以就满足只把一条边减半的要求。
最后对于这个图做一遍 S p f a Spfa Spfa就可以了。
解法二:
对于这个图,从起点到终点做一遍 S p f a Spfa Spfa,再从终点到起点做一遍 S p f a Spfa Spfa,最后枚举中间的一条边,把他减半,再取其中的最大值,即可。
最后,祝大家早日
上代码
C o d e 1 Code\ 1 Code 1
#include<bits/stdc++.h>using namespace std;vector<pair<int,int> > road[300010];
queue<int> q;
bool vis[300010];
int dist[300010];
int n,m;int main()
{ios::sync_with_stdio(false);cin.tie(0);cin>>n>>m;for(int i=1; i<=m; i++){int x,y,z;cin>>x>>y>>z;road[x+0*n].push_back(make_pair(y+0*n, z));road[x+0*n].push_back(make_pair(y+1*n,z/2));road[x+1*n].push_back(make_pair(y+1*n, z));road[y+0*n].push_back(make_pair(x+0*n, z));road[y+0*n].push_back(make_pair(x+1*n,z/2));road[y+1*n].push_back(make_pair(x+1*n, z));}memset(dist,0x7f,sizeof(dist));int f,t;cin>>f>>t;if(f==t){cout<<0<<endl;return 0;}dist[f]=0;vis[f]=true;q.push(f);while(q.size()){int now=q.front();q.pop();vis[now]=false;for(int i=0; i<road[now].size(); i++){int id=road[now][i].first;int val=road[now][i].second;if(dist[now]+val<dist[id]){dist[id]=dist[now]+val;if(!vis[id]){q.push(id);vis[id]=true;}}}}// for(int i=1; i<=2*n; i++)// cout<<dist[i]<<" ";// cout<<endl;cout<<dist[t+n]<<endl;return 0;
}
C o d e 2 Code\ 2 Code 2
#include<bits/stdc++.h>using namespace std;vector<pair<int,int> > road[510];
int dist[3][510];
int n,m,f,t;void spfa(int f,int pos)
{queue<int> q;bool vis[510];memset(dist[pos],0x7f,sizeof(dist[pos]));memset(vis,false,sizeof(vis));dist[pos][f]=0;vis[f]=true;q.push(f);while(q.size()){int now=q.front();q.pop();vis[now]=false;for(int i=0; i<road[now].size(); i++){int id=road[now][i].first;int val=road[now][i].second;if(dist[pos][now]+val<dist[pos][id]){dist[pos][id]=dist[pos][now]+val;if(!vis[id]){q.push(id);vis[id]=true;}}}}return;
}int main()
{cin>>n>>m;for(int i=1; i<=m; i++){int x,y,z;cin>>x>>y>>z;road[x].push_back(make_pair(y,z));road[y].push_back(make_pair(x,z));}cin>>f>>t;if(f==t){cout<<0<<endl;return 0;}spfa(f,1);spfa(t,2);int tar=2147483647;for(int i=1; i<=n; i++)for(int j=0; j<road[i].size(); j++)tar=min(tar,dist[1][i]+dist[2][road[i][j].first]+road[i][j].second/2);// for(int i=1; i<=2; i++)// {// for(int j=1; j<=n; j++)// cout<<dist[i][j]<<" ";// cout<<endl;// }cout<<tar<<endl;return 0;
}
完美切题 ∼ \sim ∼
这篇关于51nod 2650 最短缩减路径的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!