Pagini recente » Cod sursa (job #2044558) | Cod sursa (job #1510325) | Cod sursa (job #172728) | Cod sursa (job #1513464) | Cod sursa (job #2142257)
#include <fstream>
using namespace std;
ifstream fin("disjoint.in");
ofstream fout("disjoint.out");
int t[100001];
int root(int x)
{
int y = x, next;
while (t[y]) y = t[y];
while (t[x])
{
next = t[x];
t[x] = y;
x = next;
}
return y;
}
int main()
{
int n, m, cod, x, y;
fin >> n >> m;
while (m--)
{
fin >> cod >> x >> y;
if (cod == 1) t[root(x)] = root(y);
else
{
if (root(x) == root(y)) fout << "DA\n";
else fout << "NU\n";
}
}
}