Datasets:

ArXiv:
License:
File size: 857 Bytes
c574d3a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package torea;

import java.lang.StringBuilder;

public class FakeboolUnionFind{
    
    public static void main(String[] args){
        Kattio io = new Kattio(System.in, System.out);
        int nrUsers = io.getInt();
        int nrQueries = io.getInt();

        UnionFind.QuickUnion qf = new UnionFind.QuickUnion(nrUsers);
        StringBuilder sb = new StringBuilder();

        for(int i = 0; i< nrQueries; i++){
            String command = io.getWord();
            if (command.equals("LEGAL")){
                int id = io.getInt();
                sb.append(qf.find(id)).append("\n");
            }
            else {
                int a = io.getInt();
                int b = io.getInt();
                qf.union(a, b);
            }
        }
        io.print(sb);
        io.flush();
        io.close();
    }
}