Pagini recente » Cod sursa (job #2425060) | Cod sursa (job #688425) | Cod sursa (job #3223213) | Cod sursa (job #7684) | Cod sursa (job #2426894)
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
ifstream fin("royfloyd.in");
ofstream fout("royfloyd.out");
#define nmax 105
#define INF 10000005
int v[nmax][nmax],cost[nmax][nmax],n,c;
int main()
{
fin>>n;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
fin>>v[i][j];
if(!v[i][j])
cost[i][j]=INF;
else
cost[i][j]=v[i][j];
}
}
for(int k=1;k<=n;k++)
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(cost[i][j]>cost[i][k]+cost[k][j] && i!=j)
cost[i][j]=cost[i][k]+cost[k][j];
else
{
if(i==j)
cost[i][j]=0;
}
}
}
}
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
fout<<cost[i][j]<<" ";
fout<<'\n';
}
}