这是一道最短路的变形,以前的最短路都是相加,而这个安全系数是相乘,而且这个是安全系数越大越好!
因为我只学了最短路的两种模板,一种是Dijkstra,另外一种是Floyd!一下是这两种方法的代码!
Dijkstra 模板:
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int maxn=1005;
const double inf=0;
double map[maxn][maxn];
double dist[maxn];
int p[maxn];
int n,m;
void dj(int v)
{
int i,j,pos;
double max;
for(i=1; i<=n; i++)
{
p[i]=false;
dist[i]=map[v][i];
}
p[v]=true;
dist[v]=1;
for(i=1; i<n; i++)
{
max=inf;
for(j=1; j<=n; j++)
{
if(!p[j]&&dist[j]>max)
{
max=dist[j];
pos=j;
}
}
p[pos]=true;
for(j=1; j<=n; j++)
{
if(!p[j]&&dist[j]<dist[pos]*map[pos][j])
{
dist[j]=dist[pos]*map[pos][j];
}
}
}
}
int main()
{
int i,j;
while(scanf("%d",&n)!=EOF)
{
for(i=1; i<=n; i++)
{
for(j=1; j<=n; j++)
{
scanf("%lf",&map[i][j]);
}
}
int m;
scanf("%d",&m);
for(i=1; i<=m; i++)
{
int begin,end;
cin>>begin>>end;
dj(begin);
if(dist[end]==0)
{
printf("What a pity!\n");
}
else
{
printf("%.3lf\n",dist[end]);
}
}
}
return 0;
}
Floyd 模板:
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int maxn=1005;
double map[maxn][maxn];
int n;
void floyd()
{
int k,i,j;
for(k=1; k<=n; k++)
{
for(i=1; i<=n; i++)
{
for(j=1; j<=n; j++)
{
if(map[i][j]<map[i][k]*map[k][j])
map[i][j]=map[i][k]*map[k][j];
}
}
}
}
int main()
{
int m;
int i,j;
while(scanf("%d",&n)!=EOF)
{
for(i=1; i<=n; i++)
{
for(j=1; j<=n; j++)
{
scanf("%lf",&map[i][j]);
}
}
floyd();
cin>>m;
for(i=1; i<=m; i++)
{
int x,y;
scanf("%d%d",&x,&y);
if(map[x][y]==0)
cout<<"What a pity!"<<endl;
else
printf("%.3lf\n",map[x][y]);
}
}
return 0;
}
等我学了SPFA,我再补上这个模板!
HDU 1596
最新推荐文章于 2020-07-20 23:45:00 发布