-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuva-10685.cpp
192 lines (150 loc) · 3.97 KB
/
uva-10685.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#include <bits/stdc++.h>
using namespace std;
/* typedef starts */
typedef long long ll;
typedef unsigned long long ull;
/* typedef ends */
/* macro starts */
#define PI acos(-1.0)
/* macro ends */
/* function starts */
/// calculates n-th (0-based) Gray Code
template<typename dataType>
dataType nthGrayCode(dataType n)
{
return (n ^ (n >> 1));
}
/// extracts numbers from a string and pushes into vector
template<typename dataType>
void extractNumberFromString(string str, vector<dataType> &v)
{
stringstream ss;
/* Storing the whole string into string stream */
ss << str;
/* Running loop till the end of the stream */
string temp;
dataType found;
v.clear();
while (!ss.eof()) {
/* extracting word by word from stream */
ss >> temp;
/* Checking the given word is integer or not */
if (stringstream(temp) >> found) {
//cout << found << " " << sizeof(found) << "\n";
v.push_back(found);
}
/* To save from space at the end of string */
temp = "";
}
}
/* function ends */
class DisjointSet
{
vector<int>parent;
vector<int>_rank;
int numOfSet; /// counts the number of disjoint sets in the tree
vector<int>numOfElement; /// counts the number of member elements in all disjoint subtrees
int _max;
public:
DisjointSet()
{
/// empty
}
DisjointSet(int nodes)
{
setTree(nodes);
}
void setTree(int nodes)
{
parent.assign(nodes, 0);
_rank.assign(nodes, 0);
numOfSet = nodes;
numOfElement.assign(nodes, 1); /// initially, all disjoint subtrees contains 1 element
_max = 1;
for (int i = 0; i < nodes; i++) {
parent[i] = i;
}
}
void clearTree()
{
parent.clear();
_rank.clear();
numOfSet = 0;
}
int findSet(int i) /// find the set representative of node 'i'
{
if (parent[i] != i) {
parent[i] = findSet(parent[i]);
}
return parent[i];
}
bool isSameSet(int i, int j)
{
return findSet(i) == findSet(j);
}
void makeUnion(int i, int j)
{
if (!isSameSet(i, j)) {
numOfSet--; /// two trees have been merged into one, so number of trees decreases by one
int x = findSet(i);
int y = findSet(j);
if (_rank[x] > _rank[y]) { /// ranks keeps the tree short
parent[y] = x;
numOfElement[x] += numOfElement[y];
_max = max(_max, numOfElement[x]);
}
else {
parent[x] = y;
numOfElement[y] += numOfElement[x];
_max = max(_max, numOfElement[y]);
}
if (_rank[x] == _rank[y]) {
_rank[y]++;
}
}
}
int getNumOfSet()
{
return numOfSet;
}
int getNumOfElement(int node)
{
return numOfElement[findSet(node)];
}
int getMax()
{
return _max;
}
};
int main()
{
//freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int test, n, m, i, a, b;
DisjointSet tree;
string strA, strB;
map<string, int>hashTable;
while (cin >> n >> m) {
if (!n && !m) {
break;
}
tree.clearTree();
tree.setTree(n);
hashTable.clear();
for (i = 0; i < n; i++) {
cin >> strA;
hashTable[strA] = i;
}
while (m--) {
cin >> strA >> strB;
a = hashTable[strA];
b = hashTable[strB];
tree.makeUnion(a, b);
}
cout << tree.getMax() << "\n";
}
return 0;
}