Pagini recente » Cod sursa (job #1498523) | Cod sursa (job #2218835) | Cod sursa (job #3260344) | Cod sursa (job #3196654) | Cod sursa (job #2914952)
#include <bits/stdc++.h>
using namespace std;
ifstream fin("disjoint.in");
ofstream fout("disjoint.out");
int n, q;
int m[100005];
int sz[100005];
int Find(int x) {
int root = x;
while(m[root] != root) {
root = m[root];
}
while(m[x] != x) {
int copie = m[x];
m[x] = root;
x = copie;
}
return root;
}
void Union(int x, int y) {
int rootX = Find(x);
int rootY = Find(y);
// se lipeste multimea cu reprezentantul rootY la rootX
if(sz[rootX] > sz[rootY]) {
sz[rootX] += sz[rootY];
m[rootY] = rootX;
}
// invers
else {
sz[rootY] += sz[rootX];
m[rootX] = rootY;
}
}
int main()
{
fin >> n >> q;
for(int i = 1; i <= n; i++) {
m[i] = i;
sz[i] = 1;
}
int tip, a, b;
for(int i = 1; i <= q; i++) {
fin >> tip >> a >> b;
if(tip == 1)
Union(a, b);
else {
if(Find(a) == Find(b))
fout << "DA\n";
else
fout << "NU\n";
}
}
return 0;
}