Created
December 23, 2012 09:37
-
-
Save osjayaprakash/4362764 to your computer and use it in GitHub Desktop.
SPOJ, ARBITRAG, ARBITRAGE, FLOYD WARSHALL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <queue> | |
#include <vector> | |
#include <map> | |
using namespace std; | |
int N,M; | |
map<string, int> nodes; | |
double v[300][300]; | |
int main () | |
{ | |
string a,b,c; | |
int i,j; | |
double k; | |
int cas=1; | |
while(1){ | |
nodes.clear(); | |
cin >> N; | |
if(N==0) | |
break; | |
for(i=0;i<N;i++){ | |
cin >> a; | |
nodes[a]=i; | |
} | |
for(i=0;i<N;i++) | |
for(j=0;j<N;j++){ | |
v[i][j]=0.0; | |
} | |
cin >> M; | |
for(int z=0;z<M;z++){ | |
cin >> a >> k >> b; | |
i=nodes.find(a)->second; | |
j=nodes.find(b)->second; | |
v[i][j]=k; | |
} | |
for(int via=0; via<N;via++) | |
for(int f=0;f<N;f++) | |
for(int t=0;t<N;t++) | |
if(v[f][t] < v[f][via]*v[via][t]) | |
v[f][t] = v[f][via]*v[via][t]; | |
/* | |
for(i=0;i<N;i++){ | |
for(j=0;j<N;j++) | |
cout << v[i][j] << ' ' ; cout << endl; | |
} | |
*/ | |
for(i=0;i<N;i++) | |
if(v[i][i]>1.0) | |
break; | |
cout << "Case " << cas << ": "; | |
if(i==N) | |
cout << "No" << endl; | |
else | |
cout << "Yes" << endl; | |
cas++; | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment