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
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
#include <set>
#include <queue>
#include <ctime>
#include <map>
#include <cstdio>
#include <iomanip>
#include <sstream>
#include <iostream>
#include <cstring>
#define REP(i,x,v)for(int i=x;i<=v;i++)
#define REPD(i,x,v)for(int i=x;i>=v;i--)
#define FOR(i,v)for(int i=0;i<v;i++)
#define FORE(i,t) for (typeof(t.begin()) i=t.begin(); i!=t.end(); i++)
#define REMIN(x,y) (x)=min((x),(y))
#define REMAX(x,y) (x)=max((x),(y))
#define pb push_back
#define sz size()
#define mp make_pair
#define fi first
#define se second
#define ll long long
#define IN(x,y) ((y).find((x))!=(y).end())
#define un(v) v.erase(unique(ALL(v)),v.end())
#define LOLDBG
#ifdef LOLDBG
#define DBG(vari) cerr<<#vari<<" = "<<vari<<endl;
#define DBG2(v1,v2) cerr<<(v1)<<" - "<<(v2)<<endl;
#else
#define DBG(vari)
#define DBG2(v1,v2)
#endif
#define CZ(x) scanf("%d",&(x));
#define CZ2(x,y) scanf("%d%d",&(x),&(y));
#define CZ3(x,y,z) scanf("%d%d%d",&(x),&(y),&(z));
#define ALL(x) (x).begin(),(x).end()
#define tests int dsdsf;cin>>dsdsf;while(dsdsf--)
#define testss int dsdsf;CZ(dsdsf);while(dsdsf--)
using namespace std;
typedef pair<int,int> pii;
typedef vector<int> vi;
template<typename T,typename TT> ostream &operator<<(ostream &s,pair<T,TT> t) {return s<<"("<<t.first<<","<<t.second<<")";}
template<typename T> ostream &operator<<(ostream &s,vector<T> t){s<<"{";FOR(i,t.size())s<<t[i]<<(i==t.size()-1?"":",");return s<<"}"<<endl; }
int n,m,k;
int g[222222];
int G[222222];
pii przelew[222222];
pii reakcja[500005];
int lca[500005];
int ojc[400004];
vi drzewo[400004];
vi zczym[200002];
bool odw[400004];
vi dowyk[400004];

int p[400004];
int szuk(int x){if (x==p[x]) return x;return p[x]=szuk(p[x]);}
inline void unia(int x,int y){p[szuk(x)]=szuk(y);}


void dfs(int u)
{
	odw[u]=1;
    if (u<=n)
	{
        FOR(i,zczym[u].sz)
        {
            int nr=zczym[u][i];
            int z=u^reakcja[nr].fi^reakcja[nr].se;
            if (odw[z]) lca[nr]=szuk(z);
        }
	}
	FOR(i,drzewo[u].sz)
	{
        dfs(drzewo[u][i]);
        unia(drzewo[u][i],u);
	}
}

ll wyn=0;

void dfs2(int u)
{
	FOR(i,drzewo[u].sz)
	{
        dfs2(drzewo[u][i]);
	}
    FOR(i,dowyk[u].sz)
    {
    	int nr=dowyk[u][i];
        int ile=min(G[reakcja[nr].fi],G[reakcja[nr].se]);
        wyn+=2*ile;
        G[reakcja[nr].fi]-=ile;
        G[reakcja[nr].se]-=ile;
    }
}

ll sol()
{
	REP(i,1,n+m+1)p[i]=i;
    REP(i,1,n+m+1)drzewo[i].clear();
    REP(i,1,n+m+1)dowyk[i].clear();
    REP(i,1,n+m+1)odw[i]=0;
    REP(i,1,n)zczym[i].clear();
    REP(i,1,m)
    {
        int a=przelew[i].fi,b=przelew[i].se;
        a=szuk(a);b=szuk(b);
        ojc[a]=ojc[b]=n+i;
        drzewo[n+i].pb(a);
        drzewo[n+i].pb(b);
        unia(a,n+i);
        unia(b,n+i);
    }
    REP(i,1,k)
    {
    	zczym[reakcja[i].fi].pb(i);
    	zczym[reakcja[i].se].pb(i);
    }
    int root=n+m+1;
    REP(i,1,n+m)
    {
        if (szuk(i)==i)
		{
			ojc[i]=root;
			drzewo[root].pb(i);
		}
    }
    REP(i,1,n+m+1)p[i]=i;
    dfs(root);
	REP(i,1,k)if (lca[i]!=root) dowyk[lca[i]].pb(i);
	REP(i,1,n)G[i]=g[i];
	wyn=0;
	dfs2(root);

    return wyn;
}

ll brut()
{
    REP(i,1,n)G[i]=g[i];
    ll w=0;
    vector<vi> v(n+1);
    REP(i,1,n)v[i]=vi(1,i);
    REP(i,1,m)
    {
        int a=przelew[i].fi;
        int b=przelew[i].se;
        FOR(j,v[a].sz) v[b].pb(v[a][j]);
        set<int> s(ALL(v[b]));
        REP(j,1,k)
        {
            int r1=reakcja[j].fi;
            int r2=reakcja[j].se;
            if (IN(r1,s) && IN(r2,s))
			{
                int ile=min(G[r1],G[r2]);
                w+=ile*2;
                G[r1]-=ile;
                G[r2]-=ile;
			}
        }
    }
    return w;
}




int main()
{
	CZ3(n,m,k);
	REP(i,1,n)CZ(g[i]);
	REP(i,1,m)CZ2(przelew[i].fi,przelew[i].se);
	REP(i,1,k)CZ2(reakcja[i].fi,reakcja[i].se);
	cout<<sol();


    return 0;
}