CF741B.Arpa's weak amphitheater and Mehrdad's valuable

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Just to remind, girls in Arpa's land are really nice.

Mehrdad wants to invite some Hoses to the palace for a dancing party. Each Hos has some weight wiw_{i} and some beauty bib_{i} . Also each Hos may have some friends. Hoses are divided in some friendship groups. Two Hoses xx and yy are in the same friendship group if and only if there is a sequence of Hoses a1,a2,...,aka_{1},a_{2},...,a_{k} such that aia_{i} and ai+1a_{i+1} are friends for each 1<=i<k , and a1=xa_{1}=x and ak=ya_{k}=y .

Arpa allowed to use the amphitheater of palace to Mehrdad for this party. Arpa's amphitheater can hold at most ww weight on it.

Mehrdad is so greedy that he wants to invite some Hoses such that sum of their weights is not greater than ww 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 ww .

输入格式

The first line contains integers nn , mm and ww ( 1<=n<=10001<=n<=1000 , , 1<=w<=10001<=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 nn integers w1,w2,...,wnw_{1},w_{2},...,w_{n} ( 1<=wi<=10001<=w_{i}<=1000 ) — the weights of the Hoses.

The third line contains nn integers b1,b2,...,bnb_{1},b_{2},...,b_{n} ( 1<=bi<=1061<=b_{i}<=10^{6} ) — the beauties of the Hoses.

The next mm lines contain pairs of friends, the ii -th of them contains two integers xix_{i} and yiy_{i} ( 1<=xi,yi<=n1<=x_{i},y_{i}<=n , xiyix_{i}≠y_{i} ), meaning that Hoses xix_{i} and yiy_{i} are friends. Note that friendship is bidirectional. All pairs (xi,yi)(x_{i},y_{i}) are distinct.

输出格式

Print the maximum possible total beauty of Hoses Mehrdad can invite so that no one gets hurt and the total weight doesn't exceed ww .

输入输出样例

  • 输入#1

    3 1 5
    3 2 5
    2 4 2
    1 2
    

    输出#1

    6
    
  • 输入#2

    4 2 11
    2 4 6 6
    6 4 2 1
    1 2
    2 3
    

    输出#2

    7
    

说明/提示

In the first sample there are two friendship groups: Hoses 1,2{1,2} and Hos 3{3} . The best way is to choose all of Hoses in the first group, sum of their weights is equal to 55 and sum of their beauty is 66 .

In the second sample there are two friendship groups: Hoses 1,2,3{1,2,3} and Hos 4{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 88 , and the total beauty will be 77 .

首页