Pagini recente » Cod sursa (job #1565995) | Cod sursa (job #1615302) | Rating Mioara Amarina (mioara) | Cod sursa (job #2565153) | Cod sursa (job #2142336)
#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 << "NU\n";
else fout << "DA\n";
}
}
}