Problem C
Promotions

The Fair Inc. administration decided to promote the
best employees and limited the number of promotions to a fixed
interval
In order to understand whether the data collected so far is enough for ensuring fairness, the executive chairman wants to know:
-
How many employees will certainly be promoted in the interval endpoints (i.e., if the number of promotions is
and if the number of promotions is ). -
How many employees have no possibility of being promoted (even if the number of promotions is
).
Consider the example depicted in the figure. There are seven
employees and eight precedence rules. An arrow from an employee
-
If there are only three promotions, the promoted employees must be:
-
either Anne, Bob and Greg,
-
or Anne, Eve and Greg.
In this case, two employees (Anne and Greg) will certainly be promoted. Notice that, with the current information, Bob and Eve may or may not win a promotion.
-
-
If there are four promotions, the promoted employees have to be:
-
Anne, Bob, Eve and Greg.
So, with four promotions, four employees (Anne, Bob, Eve and Greg) will certainly be promoted and three employees (Cora, Dan and Fred) have no possibility of being promoted.
-
Task
Write a program that, given the interval of the number of promotions, the set of employees and the precedence relation among them, computes, for each of the interval endpoints, the number of employees that will certainly be promoted, and the number of employees that have no possibility of being promoted.
The precedence relation is consistent in the sense that, if
an employee
Input
The first line of the input has four space separated
integers:
Each of the following
Constraints
|
Interval endpoints. |
|
Number of employees. |
|
Number of precedence rules. |
Output
The output consists of three lines. The first line contains
the number of employees that will certainly be promoted if
there are
Sample Input 1 | Sample Output 1 |
---|---|
3 4 7 8 0 4 1 2 1 5 5 2 6 4 0 1 2 3 4 5 |
2 4 3 |