1905: CF741 - B. Arpa's weak amphitheater and Mehrdad's valuable Hoses
[Creator : ]
Description
Just to remind, girls in Arpa's land are really nice.
Arpa allowed to use the amphitheater of palace to Mehrdad for this party. Arpa's amphitheater can hold at most $w$ weight on it.
Mehrdad is so greedy that he wants to invite some Hoses such that sum of their weights is not greater than $w$ and sum of their beauties is as large as possible. Along with that, from each friendship group he can either invite all Hoses, or no more than one. Otherwise, some Hoses will be hurt. Find for Mehrdad the maximum possible total beauty of Hoses he can invite so that no one gets hurt and the total weight doesn't exceed $w$.
Input
The first line contains integers $n,m,w\ (1≤n≤1000,\ o \leq m \leq \text{min}(\frac{n\times (n-1)}{2}, 10^5),\ 1≤w≤1000)$ − the number of Hoses, the number of pair of friends and the maximum total weight of those who are invited.
The second line contains $n$ integers $w_1,w_2,...,w_n\ (1≤w_i≤1000)$ − the weights of the Hoses.
The third line contains $n$ integers $b_1,b_2,...,b_n\ (1≤b_i≤10^6)$ − the beauties of the Hoses.
The next $m$ lines contain pairs of friends, the $i$-th of them contains two integers $x_i,y_i\ (1≤x_i,y_i≤n,\ x_i≠y_i)$, meaning that Hoses $x_i$ and $y_i$ are friends. Note that friendship is bidirectional. All pairs $(x_i,y_i)$ are distinct.
The second line contains $n$ integers $w_1,w_2,...,w_n\ (1≤w_i≤1000)$ − the weights of the Hoses.
The third line contains $n$ integers $b_1,b_2,...,b_n\ (1≤b_i≤10^6)$ − the beauties of the Hoses.
The next $m$ lines contain pairs of friends, the $i$-th of them contains two integers $x_i,y_i\ (1≤x_i,y_i≤n,\ x_i≠y_i)$, meaning that Hoses $x_i$ and $y_i$ are friends. Note that friendship is bidirectional. All pairs $(x_i,y_i)$ are distinct.
Output
Print the maximum possible total beauty of Hoses Mehrdad can invite so that no one gets hurt and the total weight doesn't exceed $w$.
Sample 1 Input
3 1 5
3 2 5
2 4 2
1 2
Sample 1 Output
6
there are two friendship groups: Hoses {1,2} and Hos {3}. The best way is to choose all of Hoses in the first group, sum of their weights is equal to5and sum of their beauty is 6.
Sample 2 Input
4 2 11
2 4 6 6
6 4 2 1
1 2
2 3
Sample 2 Output
7
there are two friendship groups: Hoses {1,2,3} and Hos {4}. Mehrdad can't invite all the Hoses from the first group because their total weight is 12>11, thus the best way is to choose the first Hos from the first group and the only one from the second group. The total weight will be 8, and the total beauty will be 7.