Given the network flow $R = (G,s,t,c)$, where the digraph $G = (V,E)$ looks like this
and the grid $G - \{s,t\}$ has $n \times n$ vertices, north-south, west-east oriented with all the edges of capacity $1$, I need to prove that starting with a null flow and continuing with successive growths on augmenting paths only with forward arcs it is possible to reach only a flow value of $1$.
I am not sure about the vertical arcs that connects the "rows" of the grid in the digraph G, because these doesn't seem to be forward arcs or backward arcs.
The bottom question is... How should I begin to approach this? I think I get the question but I have no idea where to begin.
One cannot be 100% sure with regards to vocabulary in graph theory, so please verify with your professor (from your wording I guess this is a class assignment), but it seems to me that "augmenting paths only with forward arcs" means "augmenting paths whose direction aligns with the direction of the arrows in $R$".
In fact, if you could not use the vertical arcs, then any augmenting reasonable flow algorithm will find the maximum flow, that is, $n$. The reason is that then you have just $n$ disjoint paths which together constitute the maximum flow.
Assuming this understanding is correct, here are some pointers:
Hint:
More hints:
Solution:
I hope this helps $\ddot\smile$