Search found 1 match

by akhilesh890
Thu Apr 07, 2011 4:27 pm
Forum: Volume 100 (10000-10099)
Topic: 10099 - The Tourist Guide
Replies: 91
Views: 43154

FLOYD WARSHALL - GIVING WA

Can anyone please help me out here - I am using floyd warshall algorithm using optimal routing yet giving wrong answer.


#include<iostream>
#include<math.h>
#include<algorithm>
using namespace std;
#define INFI 10000000
#define V 200

int main()
{

long long int path[V+1][V+1] , vert , edge, x ...

Go to advanced search