Editorial for GlobeX Cup '18 S1 - Code Copiers
Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
We can use a boolean array to store whether there is a coder who this coder copies from. An element in the array is if coder is not a source.
For all , we set , meaning that coder is not a source.
Then, we can loop through the boolean array and count the number of elements.
Time Complexity:
Comments