Cod sursa(job #2426894)

Utilizator PopescuAndreiAlexandruPopescu Andrei Alexandru PopescuAndreiAlexandru Data 29 mai 2019 22:09:28
Problema Floyd-Warshall/Roy-Floyd Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 1.05 kb
#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';
    }
}