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
#include <bits/stdc++.h>
using namespace std;

int gram_subs[200001];

unsigned long long int osad = 0;

class Sek {
public:
	int a;
	int b;
	Sek(int a, int b) : a(a), b(b){}
};

class ReaPrio {
public:
	int prio;
	int a;
	int b;
	ReaPrio(int p, int a, int b) : prio(p), a(a), b(b) {}
	bool operator==(const ReaPrio &x){
		return (a == x.a) && (b == x.b);
	}
};

namespace std {
template<>
struct less<ReaPrio>
{
   bool operator()(const ReaPrio &x, const ReaPrio &y){
	// return (this->a < x.a) ? true : (this->a == x.a && this->prio < x.prio) ? true : false;
	if(x.a < y.a){
		return true;
	}
	if(x.a == y.a && x.prio < y.prio){
		return true;
	}
	return false;
}
};
}

// class ReaPrioComp {
// public:
// bool operator()(const ReaPrio &x, const ReaPrio &y){
// 	// return (this->a < x.a) ? true : (this->a == x.a && this->prio < x.prio) ? true : false;
// 	if(x.a < y.a){
// 		return true;
// 	}
// 	if(x.a == y.a && x.prio < y.prio){
// 		return true;
// 	}
// 	return false;
// }
// };

int main()
{
	ios_base::sync_with_stdio(0);
	cin.tie(0);

	int N, M, K;
	cin >> N >> M >> K;

	for (int i = 1; i <= N; ++i)
	{
		int x;
		cin >> x;
		gram_subs[i] = x;
	}

	vector<list<int > > tree;
	tree.reserve(N+1);
	for (int i = 0; i <= N; ++i)
	{
		tree.push_back({i});
	}

	// for(const auto &x : tree){
	// 	for(const auto &y : x){
	// 		cout << y << ", ";
	// 	}
	// 	cout << endl;
	// }
	// cout << endl;

	vector<Sek > steps;
	steps.reserve(M);
	for (int i = 0; i < M; ++i)
	{
		int _a, _b;
		cin >> _a >> _b;
		steps.push_back(Sek(_a, _b));
	}
	// set<ReaPrio, ReaPrioComp > reakcja;
	set<ReaPrio > reakcja;

	for (int i = 0; i < K; ++i)
	{
		int _a, _b;
		cin >> _a >> _b;
		// reakcja.push_back(ReaPrio(i, min(_a, _b), max(_a, _b));
		reakcja.insert(ReaPrio(i, min(_a, _b), max(_a, _b)));
	}

#ifdef DEBUG
#endif

	for(const auto &s : steps){

#ifdef DEBUG
		cout << "---------" << endl;
		for(const auto &x : tree){
			for(const auto &y : x){
				cout << y << ", ";
			}
			cout << endl;
		}
#endif

		// if(tree[s.a].size() <= tree[s.b.size()]){
		// 	// shorter is min
		// 	for(const auto&p : tree[s.a]){
		// 		auto rf = find(reakcja.begin(), reakcja.end(), p);
		// 		if(rf != reakcja.end()){

		// 		}
		// 	}
		// }
		// else{
		// 	for(const auto&p : tree[s.b]){
		// 		auto rf = find(reakcja.begin(), reakcja.end(), p);
		// 		if(rf != reakcja.end()){

		// 		}
		// 	}
		// 	// shorter is max
		// }

		tree[s.b].merge(tree[s.a]);
	}

#ifdef DEBUG
		cout << "---------" << endl;
		for(const auto &x : tree){
			for(const auto &y : x){
				cout << y << ", ";
			}
			cout << endl;
		}
#endif


	// osad +=

	return 0;
}