Problem A
Disjoint Sets
Languages
da
en
Maintain a family of disjoint sets, initially the singletons
- 0 (“query”)
-
The query operation takes two elements
and and determines if and belong to the same set. More precisely, if and then print “1” if and print “0” if . - 1 (“union”)
-
The union operation takes two elements
and and creates the union of the two sets containing and . More precisely, if and with then and are removed from the family and replaced by the set . (If then nothing happens.) - 2 (“move”)
-
(Test groups 2 and 4 only.) The move operation takes two elements
and and moves the element into the set containing the element . More precisely, if and with then is changed to and is changed to . (If then nothing happens.)
Note that these operations maintain invariantly that the sets in the family are disjoint.
Test groups
There are 4 different test groups.
Test group |
Points |
Problem size bounds |
Operations |
1 |
10 |
|
0 and 1 |
2 |
10 |
|
0, 1, and 2 |
3 |
40 |
|
0 and 1 |
4 |
40 |
|
0, 1, and 2 |
Any solution to test group 3 also solves test group 1. Any solution to test group 4 solves all the other test groups.
Input
The input starts with two positive integers
Output
For each query, write a single line containing 1 or 0 as described above.
Sample Input 1 | Sample Output 1 |
---|---|
4 9 0 0 1 1 0 1 0 0 1 1 1 2 0 1 2 0 0 3 1 2 3 0 2 3 0 0 3 |
0 1 1 0 1 1 |
Sample Input 2 | Sample Output 2 |
---|---|
4 9 0 0 1 1 0 1 0 0 1 1 1 2 0 1 2 0 0 3 2 2 3 0 0 1 0 1 2 |
0 1 1 0 1 0 |
Sample Input 3 | Sample Output 3 |
---|---|
2 2 1 0 0 0 0 1 |
0 |