FASTEST APPROACH:
There are only 2 possible exits: X or Y.
Instead of calculating all the traffic reaching Y, calculate the traffic reaching X.
To reach X, traffic must take the correct branch at 3 consecutive forks.
At each fork, traffic splits equally:
X = (1/2) × (1/2) × (1/2)
= 1/8
= 12.5%
Since all traffic must exit through either X or Y:
Y = 100% - 12.5%
= 87.5%
Answer: A
IMPORTANT:
Do NOT calculate Y by adding 50% + 25% + 12.5%.
Since there are only 2 exits, calculate the easier exit and subtract it from 100%.
TRAFFIC-FLOW / BRANCHING / SPLITTING DIAGRAMS
Default Method:
1. Assume 100 enters the system.
2. At every junction, split the ACTUAL amount arriving at that junction.
3. Follow each relevant branch.
4. Add all branches that reach the requested destination.
Example of successive 50-50 splits:
100 → 50 → 25 → 12.5
IMPORTANT:
Never keep halving the original 100.
You halve the amount arriving at THAT particular junction:
100 → 50
50 → 25
25 → 12.5
COMPLEMENT SHORTCUT:
You do NOT need to recognize the complement trick.
If it strikes you that there are only two possible exits, you can calculate the easier exit and subtract it from 100%.
But the safe default method is always:
Assume 100 enters → split actual amounts → trace branches → add amounts reaching the required destination.