Pagini recente » Cod sursa (job #3225487) | Cod sursa (job #884670) | Monitorul de evaluare | Cod sursa (job #1999504) | Cod sursa (job #3225484)
#include <bits/stdc++.h>
using namespace std;
using pii = pair<int,int>;
using ll = long long;
#define pb push_back
ifstream fin("disjoint.in");
ofstream fout("disjoint.out");
const int N = 1e5+5;
int n, m, comp[N];
int getroot(int nod){
if (comp[nod] == nod) return nod;
return (nod = getroot(comp[nod]));
}
int main()
{
fin >> n >> m;
for (int i = 1; i <= n; i++)
comp[i] = i;
while (m--){
int tip, x, y; fin >> tip >> x >> y;
x = getroot(x); y = getroot(y);
if (tip == 1) comp[x] = y;
else fout << (x == y ? "DA\n" : "NU\n");
}
return 0;
}
//18:06