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
#include<iostream>
#include <vector>
#include <set>
#include <queue>
#include<algorithm>

using namespace std;

vector<set<int>> g1;
vector<set<int>> g2;
vector<string> wynik;

void wczytaj_g(vector<set<int>> &g, int liczba) {
	int licz, e1, e2, m;
	cin >> licz;
    for (int i=0; i <= liczba; i++) {
        g.push_back({});
	}
    for (int i=0; i < licz; i++) {
		cin >> e1 >> e2;
		if (e1 > e2)
			swap(e1, e2);
		g[e1].insert(e2);
	}
}

void mermaid(const vector<set<int>> &g) {
	cout << "```mermaid\ngraph LR\n";
	for (int i=1; i < g.size(); i++)
		for (auto el: g[i]) 
			cout << i << " --- " << el << "\n"; 
	cout << "```\n";
	cout << endl;
	return;
}

void dadaj_z1(vector<set<int>> &g) {
	for (int i=2; i < g.size(); i++) {
		if (! g[1].count(i)) {
			g[1].insert(i);
			wynik.push_back("+ " + to_string(1) + " " + to_string(i));
			// cout << "+ " + to_string(1) + " " + to_string(i) << endl;
			// mermaid(g1);
		}
	}
	return;
}
void dodaj(vector<set<int>> &g, vector<set<int>> &g2) {
	for (int i=2; i < g.size(); i++) {
		for (auto el: g2[i])
			if (! g[i].count(el)) {
				g[i].insert(el);
				wynik.push_back("+ " + to_string(i) + " " + to_string(el));
				// cout << "+ " + to_string(i) + " " + to_string(el) << endl;
				// mermaid(g1);
			}
	}
	return;
}
void usun(vector<set<int>> &g, vector<set<int>> &g2) {
	vector<int> to_erase;
	for (int i=2; i < g.size(); i++) {
		to_erase.clear();
		for (auto el: g[i]) {
			if (! g2[i].count(el)) {
				to_erase.push_back(el);
				wynik.push_back("- " + to_string(i) + " " + to_string(el));
				// cout << "- " + to_string(i) + " " + to_string(el) << endl;
			}
		}
		for (auto el: to_erase) {
			g[i].erase(el);
				// mermaid(g1);
		}
	}
	return;
}

void usun_z1() {
	vector<int> kol_us;
	queue<int> q;
	set<int> used;
	vector<set<int>> g2zw;
	for (int i=0; i< g2.size(); i++)
		g2zw.push_back({});
	for (int i=0; i< g2.size(); i++)
		for (auto el: g2[i]) {
			g2zw[i].insert(el);
			g2zw[el].insert(i);
		}
	int el;
	q.push(1);
	used.insert(1);
	while (!q.empty()) {
		el = q.front();
		q.pop();
		kol_us.push_back(el);
		for (auto pot: g2zw[el]) {
			if (!used.count(pot)) {
				q.push(pot);
				used.insert(pot);
			}
		}
	}
	for (int i=kol_us.size()-1; i > 0; i--) {
		el = kol_us[i];
		if (! g2[1].count(el)) {
			g1[1].erase(el);
			wynik.push_back("- " + to_string(1) + " " + to_string(el));
			// cout << "- " + to_string(1) + " " + to_string(el) << endl;
			// mermaid(g1);
		}
	}
	return;
}

void wypisz() {
	cout << wynik.size() <<"\n";
	for (auto s: wynik)
		cout << s << "\n";
	return;
}


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

	int liczba;
	cin >> liczba;
	wczytaj_g(g1, liczba);
	wczytaj_g(g2, liczba);
	// mermaid(g1);
	// mermaid(g2);
	dadaj_z1(g1);
	dodaj(g1, g2);
	usun(g1, g2);
	usun_z1();
	wypisz();
	return 0;
}