Niestety, nie byliśmy w stanie w pełni poprawnie wyświetlić tego pliku, ponieważ nie jest zakodowany w UTF-8. Możesz pobrać ten plik i spróbować otworzyć go samodzielnie.
  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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#include<iostream>
#include<cstdlib>
#include<vector>
#include<algorithm>
#include<cmath>
#include<map>
#include<list>

using namespace std;

struct subst
{
    int ilosc;
    //int lokacja;
    map<int,int> priorytet_reakcji;
    //list<int> skladnikiWFiolce;
    //map< list<int> > mozliweReakcje;
};

struct fiolka
{
   // int ilosc;
    //int lokacja;
   // map<int> priorytet_reakcji;
    list<int> skladnikiWFiolce;
    map< int,list<int> > mozliweReakcje;
};

struct krok
{
    int from;
    int to;
};

struct reakcja
{
    int a, b;
    int priorytet;
    reakcja():
    a(0),priorytet(0)
    {
    }
    reakcja(int aa, int bb,int pp):
    a(aa),b(bb),priorytet(pp)
    {
    }
};

bool porown(const reakcja& a, const reakcja& b)
{
     return a.priorytet < b.priorytet;
}

int main()
{

    int m,n,k;

    //cin>>m>>n>>k;
    scanf("%d%d%d",&n,&m,&k);
    vector<subst> substance(n);
    vector<krok> sekwencja(m);
    vector<fiolka> fiolki(n);

    for(int i = 0; i < n; i++)
    {
        scanf("%d",&substance[i].ilosc);
        fiolki[i].skladnikiWFiolce.push_back(i);
        //substance[i].lokacja = i;
    }

    for(int i = 0; i < m; i++)
    {
        scanf("%d%d",&sekwencja[i].from, &sekwencja[i].to);
		--sekwencja[i].from;
		--sekwencja[i].to;
    }

    for(int i = 0; i < k; i++)
    {
        int c, d;
        scanf("%d%d",&c, &d);
        --c;
        --d;
        substance[c].priorytet_reakcji[d] = i;
        substance[d].priorytet_reakcji[c] = i;
        fiolki[d].mozliweReakcje[c].push_back(d);//[c-1] = i;
        fiolki[c].mozliweReakcje[d].push_back(c);
    }

    long long int osad = 0;

    for(int i = 0; i < m; i++)
    {
        int from = sekwencja[i].from;
        int to = sekwencja[i].to;

        vector<reakcja> reakcje;

        {
            int from2, to2;

            if(fiolki[from].skladnikiWFiolce.size() < fiolki[to].skladnikiWFiolce.size())
            {
                from2 = from;
                to2 = to;
            }
            else
            {
                from2 = to;
                to2 = from;
            }

            list<int>::iterator it = fiolki[from2].skladnikiWFiolce.begin();
            list<int>::iterator itEnd = fiolki[from2].skladnikiWFiolce.end();
            for( ;it != itEnd;)
            {
                if(substance[*it].ilosc > 0)
                {
                    map< int, list<int> >::iterator listaReakcji = fiolki[to2].mozliweReakcje.find(*it);
                    if(  listaReakcji != fiolki[to2].mozliweReakcje.end() )
                    {
                        list<int>::iterator it2 = listaReakcji->second.begin();
                        for(;it2 != listaReakcji->second.end();it2++)
                        {
                            if(substance[*it2].ilosc > 0)
                            {
                                reakcje.push_back(reakcja(*it, *it2, substance[*it].priorytet_reakcji[*it2]));
                            }
                            else
                            {
                                 fiolki[to2].mozliweReakcje.erase(*it2);
                            }
                        }
                        fiolki[to2].mozliweReakcje.erase(listaReakcji); // nic z tej fiolki ju� nie zareaguje z substancj� *it;
                    }
                    it++;
                }
                else
                {
                    it = fiolki[from2].skladnikiWFiolce.erase(it);
                }
            }
        }
        if(reakcje.size() != 0)
        {
            sort(reakcje.begin(),reakcje.end(), porown);
            //cout << "sort:"<<endl;
            //fiolki[to].skladnikiWFiolce.clear();
            for(int i = 0; i <reakcje.size(); i++)
            {
                int ila = substance[reakcje[i].a].ilosc;
                int ilb = substance[reakcje[i].b].ilosc;
                if(ila > 0 && ilb > 0)
                {
                    //cout << reakcje[i].a <<" "<<ila<<" "<<reakcje[i].b<<" "<<ilb<<" "<<reakcje[i].priorytet<<endl;
                    if(ila > ilb) // skladnik b jest skasowany
                    {
                        osad += 2*ilb;
                        substance[reakcje[i].a].ilosc -= ilb;
                        substance[reakcje[i].b].ilosc -= ilb;
                        //fiolki[to].skladnikiWFiolce.push_back(reakcje[i].a);
                        //do_dodania.push_back(reakcje[i].a);
                        //fiolki[to].mozliweReakcje
                        //fiolki[to].skladnikiWFiolce.erase();
                    }
                    else
                    {
                        osad += 2*ila;
                        substance[reakcje[i].a].ilosc -= ila;
                        substance[reakcje[i].b].ilosc -= ila;
                    }
                 //cout <<"a:"<< reakcje[i].a <<" "<<ila<<", b:"<<reakcje[i].b<<" "<<ilb<<" "<<reakcje[i].priorytet<<", sum: "<<osad<<endl;
                }
            }
        }

		if(fiolki[to].mozliweReakcje.size() < fiolki[from].mozliweReakcje.size())
		{
			fiolki[to].mozliweReakcje.swap( fiolki[from].mozliweReakcje );
		}

		map< int, list<int> >::iterator listaReakcjiFrom =  fiolki[from].mozliweReakcje.begin();

		for(;listaReakcjiFrom != fiolki[from].mozliweReakcje.end();listaReakcjiFrom++)
		{
			if( substance[listaReakcjiFrom->first].ilosc > 0 )
			{
			    list<int>& copy = fiolki[to].mozliweReakcje[listaReakcjiFrom->first];
				copy.splice(copy.begin(), listaReakcjiFrom->second);
			}
			/*else nie wydajne!
			{
			    map< int, list<int> >::iterator toErase =  fiolki[to].mozliweReakcje.find(listaReakcjiFrom->first);
			    if(toErase !=  fiolki[to].mozliweReakcje.end())
			    {
			         fiolki[to].mozliweReakcje.erase(toErase);
			    }
			}*/
		}
        fiolki[from].mozliweReakcje.clear();

		if(fiolki[to].skladnikiWFiolce.size() < fiolki[from].skladnikiWFiolce.size())
		{
			fiolki[to].skladnikiWFiolce.swap( fiolki[from].skladnikiWFiolce );
		}

        list<int>::iterator it2 = fiolki[from].skladnikiWFiolce.begin();
        list<int>::iterator itEnd2 = fiolki[from].skladnikiWFiolce.end();
        for( ;it2 != itEnd2; it2++)
        {
            if(substance[*it2].ilosc > 0)
            {
                fiolki[to].skladnikiWFiolce.push_back(*it2);
            }
        }


        //fiolki[to].mozliweReakcje.insert(fiolki[from].mozliweReakcje.begin(),fiolki[from].mozliweReakcje.end());
    }

    cout<< osad <<endl;

    return 0;
}