Pagini recente » Cod sursa (job #2248120) | Cod sursa (job #2478942) | Cod sursa (job #842660) | Cod sursa (job #3002231) | Cod sursa (job #2397171)
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> parent, depth;
int root(int x) {
if(x == parent[x])
return x;
int ans = root(parent[x]);
//Comprimam drumul pentru apeluri viitoare
parent[x] = ans;
return ans;
}
void unite(int x, int y) {
//Unim arborele cu adancimea mai mica de cel cu adancimea mai mare
if(depth[x] < depth[y]) {
parent[x] = y;
} else {
parent[y] = x;
}
//Daca adancimile erau egale, radacina noua este x
//(vezi linia 21), deci incrementam depth[x]
if(depth[x] == depth[y]) {
depth[x] += 1;
}
}
bool sameComp(int x, int y) {
return root(x) == root(y);
}
int main() {
ifstream fin("disjoint.in");
ofstream fout("disjoint.out");
int n, m; fin >> n >> m;
parent = vector<int> (n, 0);
depth = vector<int> (n, 0);
for(int i = 0; i < n; i += 1) {
parent[i] = i;
}
for(int i = 0; i < m; i += 1) {
int type, x, y; fin >> type >> x >> y;
x -= 1, y -= 1;
if(type == 1) {
//Intotdeauna lucram cu radacinile
unite(root(x), root(y));
} else {
bool ans = sameComp(x, y);
if(ans) {
fout << "DA\n";
} else {
fout << "NU\n";
}
}
}
}