Schedule Problem |
A project can be divided into several parts. Each part should be completed continuously. This means if a part should take 3 days, we should use a continuous 3 days to complete it. There are four types of constrains among these parts which are FAS, FAF, SAF and SAS. A constrain between parts is FAS if the second one should finish after the first one started. FAF is finish after finish, SAF is start after finish, and SAS is start after start. Assume there are enough people involved in the projects, which means we can do any number of parts concurrently. You are to write a program to give a schedule of a given project, which has the shortest time.
Each project consists the following lines:
A blank line should appear following the output for each project.
3 2 3 4 SAF 1 2 FAF 2 3 # 3 1 1 1 SAF 1 2 SAF 2 3 SAF 3 1 #
Case 1: 1 0 2 2 3 1 Case 2: impossible