Problem A
Fakebool UnionFind

The social network Fakebool has had a lot of problems with fake news spread by fake user accounts. You have been hired along with a team of consultants to shut them down.
By using a 100% fail-proof machine learning technique, a colleague has developed a daemon which monitors network activity and occasionally identifies pairs of profiles on the network which definitely are managed by the same individual.
While this all goes on, the legal department often pops by
and demands to know the earliest known account ID of the person
managing a specific account; each account is associated with a
unique identifier (ID) from
This all reminds you of a course you once took in algorithms and data structures, and something called Union Find which fits this purpose perfectly! You decide to implement it straight away to be able to serve the legal department efficiently.
Input
The first line of input consists of two integers,
The
Constraints
Output
For each query where
Sample Input 1 | Sample Output 1 |
---|---|
5 7 LEGAL 1 DAEMON 0 1 LEGAL 1 DAEMON 1 2 DAEMON 4 3 LEGAL 2 LEGAL 3 |
1 0 0 3 |