Problem G
Faulty Robot
As part of a CS course, Alice just finished programming her
robot to explore a graph having
While nodes may have several outgoing edges, Alice
programmed the robot so that any node may have a forced
move to a specific one of its neighbors. For example, it
may be that node
If operating correctly, the robot will always follow forced moves away from a node, and if reaching a node that does not have a forced move, the robot stops. Unfortunately, the robot is a bit buggy, and it might violate those rules and move to a randomly chosen neighbor of a node (whether or not there had been a designated forced move from that node). However, such a bug will occur at most once (and might never happen).
Alice is having trouble debugging the robot, and would like your help to determine what are the possible nodes where the robot could stop and not move again.
We consider two sample graphs, as given in Figures 1 and 2. In these figures, a red arrow indicate an edge corresponding to a forced move, while black arrows indicate edges to other neighbors. The circle around a node is red if it is a possible stopping node.
![\includegraphics[width=0.6\textwidth ]{faulty}](/problems/faultyrobot/file/statement/en/img-0001.png)
![\includegraphics[width=0.3\textwidth ]{faulty2}](/problems/faultyrobot/file/statement/en/img-0002.png)
In the first example, the robot will cycle forever through
nodes
In the second example, there are no forced moves, so the
robot would stay at
Input
The first line contains two integers
Output
Display the number of nodes at which the robot might come to a rest.
Sample Input 1 | Sample Output 1 |
---|---|
7 9 1 2 2 3 -1 5 2 6 5 1 -4 1 5 6 -6 7 -5 4 |
2 |
Sample Input 2 | Sample Output 2 |
---|---|
3 2 1 2 1 3 |
3 |