1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <vector>
#define s(x); scanf("%lld",&x);
using namespace std;
typedef long long LL;

LL ile_f,ile_s,ile_r;

vector <pair<LL,LL> > reakcje;
vector <pair<LL,LL> > sekwencja;
vector <LL> masa;
vector <LL> podczepienie;

void read(){
	s(ile_f);
	s(ile_s);
	s(ile_r);
	masa.resize(ile_f+1,0);
	sekwencja.resize(ile_s+1);
	reakcje.resize(ile_r+1);
	podczepienie.resize(ile_f+1,0);
	for(int i = 0; i <= ile_f; i++){
		podczepienie[i] = i;
	}
	for(int i = 1; i <= ile_f; i++){
		LL a;
		s(a);
		masa[i]=a;
	}
	for(int i = 1; i <= ile_s; i++){
		LL a,b;
		s(a); s(b);
		podczepienie[a]=b;
		sekwencja[i] = make_pair(a,b);
	}
	for(int i = 1; i <= ile_r; i++){
		LL a,b;
		s(a); s(b);
		reakcje[i] = make_pair(a,b);
	}
	return;
}

int finde(int k){
	if(podczepienie[k]==k) return k;
	podczepienie[k] = finde(podczepienie[k]);
	return podczepienie[k];
}

bool Union(int a, int b){
	if(finde(a)==finde(b)) return true;
	return false;
}


void solve(){
	LL result = 0;
	for(int i = 1; i <= ile_f; i++){
		podczepienie[i] = finde(i);
	}
	for(int i = 1; i <= ile_r; i++){
		if(Union(reakcje[i].first,reakcje[i].second)){
			LL minimum = min(masa[reakcje[i].first],masa[reakcje[i].second]);
			result += 2LL*minimum;
			masa[reakcje[i].second] -= minimum;
			masa[reakcje[i].first] -= minimum;
		}
	}
	printf("%lld\n",result);
	return;
}


int main(){
	read();
	solve();
	return 0;
}