forked from keshavnandan/Topcoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEgalitarianism.cpp
36 lines (30 loc) · 873 Bytes
/
Egalitarianism.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <vector>
#include <string>
#include <numeric>
#include <queue>
#define inf 10000000
using namespace std;
int D[55][55];
class Egalitarianism {
public:
int maxDifference(vector<string> const M,
int d) {
int n = M.size();
// memset(D, 0, sizeof(D));
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
if(i == j) D[i][j] = 0;
else D[i][j] = (M[i][j] == 'Y' ? 1 : inf);
for(int k = 0; k < n; k++)
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
D[i][j] = min(D[i][j], D[i][k] + D[k][j]);
int maxv = 0;
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
maxv = max(maxv, D[i][j]);
cout<<"maxv = "<<maxv<<endl;
if(maxv == inf) return -1;
return maxv*d;
}
};