854. Floyd求最短路
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了854. Floyd求最短路相关的知识,希望对你有一定的参考价值。
https://www.acwing.com/problem/content/856/
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
const int N=210;
const int INF=1e9;
int n,m,k;
int dist[N][N];
void floyd()
{
for(int k=1;k<=n;k++)
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
dist[i][j]=min(dist[i][j],dist[i][k]+dist[k][j]);
}
}
}
}
int main(void)
{
cin>>n>>m>>k;
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
if(i==j) dist[i][j]=0; //自环
else dist[i][j]=INF;
while(m--)
{
int a,b,c; cin>>a>>b>>c;
dist[a][b]=min(dist[a][b],c); //存较小的边
}
floyd();
while(k--)
{
int a,b; cin>>a>>b;
if(dist[a][b]>1e9/2) cout<<"impossible"<<endl;
else cout<<dist[a][b]<<endl;
}
return 0;
}
以上是关于854. Floyd求最短路的主要内容,如果未能解决你的问题,请参考以下文章