E - Exposing corruption

Languages: C, C++, Java, Pascal, Python, Tiger, JavaScript, Haskell, C#
Time & Memory limits: (details)

The Central Committee in Nlogonia is formed by many congress members. As the political system is dichotomic, each congress member belongs to one of two parties: the Deadly Serious Party and the Party! Party! Party. Historical tradition calls them DSP and PPP, respectively.

Edward is an investigative journalist. He discovered that congress members are corrupt and will switch parties if offered a given amount of Nlogmoney to do so. Each congress member has his or her own specific price, but they all have a price. As usual in politics, there exist rivalries between some pairs of congress members. Rivals would never accept to be in the same party.

Edward has a budget and wants to use it to make some congress members switch parties, thus gathering indisputable evidence for his investigation. In doing so, he has to respect rivalries: after everyone who was offered money switches, rivals must be left belonging to different parties.

Edward wants to cause maximum impact. Can you help him find out the maximum number of congress members that can belong to DSP if he uses at most all of his budget towards that goal? Similarly, what is the maximum number of congress members that can belong to PPP under the same constraints?

Input

The first line contains four integers $D$, $P$, $R$ and $B$, representing respectively the number of congress members that initially belong to DSP ($1 \leq D \leq 100$), the number of congress members that initially belong to PPP ($1 \leq P \leq 100$), the number of rivalries among congress members ($1 \leq R \leq 2000$), and the budget of the journalist expressed in Nlogmoney ($1 \leq B \leq 10^4$). Members of DSP are identified with distinct integers from $1$ to $D$, while members of PPP are identified with distinct integers from $1$ to $P$. The second line contains $D$ integers $S_1, S_2, ..., S_D$, indicating that member $i$ of DSP will switch parties if offered $S_i$ Nlogmoney ($1 \leq S_i \leq 100$ for $i = 1, 2, ..., D$). The third line contains $P$ integers $T_1, T_2, ..., T_P$, indicating that member $j$ of PPP will switch parties if offered $T_j$ Nlogmoney ($1 \leq T_j \leq 100$ for $j = 1, 2, ..., P$). Each of the next $R$ lines describes a rivalry with two integers $X$ and $Y$, representing that member $X$ of DSP and member $Y$ of PPP are rivals ($1 \leq X \leq D$ and $1 \leq Y \leq P$).

Output

Output a line with two integers representing the maximum number of congress members that can belong to DSP using the given budget and, similarly, the maximum number of congress members that can belong to PPP using the given budget.

Sample test(s)

Input
2 3 2 55 20 30 40 30 1 2 3 1 3
Output
3 4
Input
3 2 6 30 5 5 5 5 5 2 1 2 2 1 1 1 2 3 1 3 2
Output
3 3