\documentclass[a4paper,12pt]{article}

\begin{document}

\parindent=0pt

QUESTION

The activities described below must be performed each time a ship
carrying passengers and freight enters the dock.

\begin{tabular}{cccc}
\hline Activity&Description&Prerequisites&Duration (mins.)\\
\hline A&Tow ship to berth&-&20\\ B&Passengers disembark&A&30\\
C&Unload cargo&A&60\\ D&Clean ship&B&90\\ E&Perform safety
check&B,C&30\\ F& Refuel&E&45\\ G&Load cargo&C&45\\ H& Passengers
embark&D,E&30\\I&Tow ship out of dock&F,G,H&20\\ \hline
\end{tabular}

\begin{description}

\item[(a)]
Management requires that each ship spends at most three hours in
the dock. Can this be achieved?

\item[(b)]
By employing extra workers, the time required for the unloading
and loading of cargo can be reduced to 50 minutes and 70 minutes
respectively. Alternatively, the same money can be used to employ
extra cleaners to reduce the cleaning time to 75 minutes. Which
proposal do you recommend?

\item[(c)]
What would be the effect of increasing the refueling time to 50
minutes?

\end{description}


ANSWER

\setlength{\unitlength}{0.4in}

\begin{picture}(5,5)
\put(1,3){\oval(.3,.3)}\put(1,3){\makebox(0,0){1}}
\put(3,3){\oval(.3,.3)}\put(3,3){\makebox(0,0){2}}
\put(5,5){\oval(.3,.3)}\put(5,5){\makebox(0,0){3}}
\put(5,1){\oval(.3,.3)}\put(5,1){\makebox(0,0){4}}
\put(7,3){\oval(.3,.3)}\put(7,3){\makebox(0,0){5}}
\put(9,3){\oval(.3,.3)}\put(9,3){\makebox(0,0){6}}
\put(11,5){\oval(.3,.3)}\put(11,5){\makebox(0,0){7}}
\put(11,1){\oval(.3,.3)}\put(11,1){\makebox(0,0){8}}
\put(13,3){\oval(.3,.3)}\put(13,3){\makebox(0,0){9}}


%lines from 1
\put(1.2,3){\vector(1,0){1.6}}
%lines from 2
\put(3.2,3.2){\vector(1,1){1.6}} \put(3.2,2.8){\vector(1,-1){1.6}}
%lines from 3
\put(5.2,5){\vector(1,0){5.6}} \put(5.2,4.8){\line(3,-3){1.6}}
%lines from 4
\put(5.2,1.2){\line(3,3){1.6}}\put(5.2,1){\vector(1,0){5.6}}
%lines from 5
\put(7.2,3){\vector(1,0){1.6}}
%lines from 6
\put(9.2,3.2){\line(3,3){1.6}}\put(9.2,2.8){\vector(1,-1){1.6}}
%lines from 7
\put(11,4.8){\vector(0,-1){3.6}}
%lines from 8
\put(11.2,1.2){\vector(1,1){1.6}}

\put(2,3.2){A,20} \put(3,4.1){B,30} \put(3,2){C,60}
\put(8,5.1){D,90} \put(8,3.2){E,30} \put(10,2){F,45}
\put(8,.7){G,80} \put(11.2,3){H,30} \put(12.2,2){I,20}

\put(0,2.8){(0,0)} \put(3.2,3){(20,20)} \put(5,5.2){(50,50)}
\put(5,.6){(80,90)} \put(7.2,2.7){(80,95)}
\put(8.5,3.7){(110,125)} \put(11.2,5.2){(140,140)}
\put(11.2,.6){(170,170)} \put(13.1,3.6){(190,190)}

\end{picture}

Critical path is A - B - D - H - I.

\begin{description}

\item[(a)]
No, 3 hours and 10 minutes are needed.

\item[(b)]
Unloading and loading of cargo (C and G) are non-critical, so
there is no advantage in reducing their durations. However
cleaning (D) is a critical activity. Reducing the duration of $D$
by 15 minutes reduces the project duration to 3 hours (A - C - G -
I becomes critical).

\item[(c)]
The total float for refuelling (activity F) is
$TF_F=170-110-45=15$. This exceeds the increase in duration of F,
so there is no effect on the project duration.

\end{description}





\end{document}
