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
// #include <stdio.h>
// #include <set>
// #include <vector>
// #include <iostream>
// #include <algorithm>
// #include <string>
#include <bits/stdc++.h>
using namespace std;

int n, wizB, wizD;
vector< set<int> > cz(30'005);
vector< set<int> > wym(30'005);
vector< string > mainRegister;

inline void polacz(const int &t1, const int &t2) {

    cz[t1].insert(t2);
    cz[t2].insert(t1);
    mainRegister.push_back("+ " + to_string(t1) + " " + to_string(t2));
}

inline void rozlacz(const int t1, const int t2) {

    const auto it1 = cz[t1].find(t2);
    // const auto it2 = cz[t2].find(t1);
    cz[t1].erase(it1);
    // cz[t2].erase(it2);
    mainRegister.push_back("- " + to_string(t1) + " " + to_string(t2));
}


inline void buduj(const int& p) {
    //cout << "fixing...\n";

    for (const auto& x: wym[p]) {
        
        //cout << x << ": ";
        if (!cz[p].count(x)) {
            // cout << "nie istnieje\n";
            // cout << "tworze polaczenie miedzy: " << p << ' ' << x << '\n';

            std::set<int> intersection;
            std::set_intersection(cz[p].begin(), cz[p].end(), cz[x].begin(), cz[x].end(),
            std::inserter(intersection, intersection.begin()));


            if (intersection.empty()) {
                //cout << "nie posiadaja zadnych wspolnych elementow :(\n";
                int elem = 0;
                if (!cz[p].empty()) {
                    elem = *cz[p].begin();
                    polacz(x, elem);
                    polacz(p, x);
                    //rozlacz(x, elem);
                } else {
                    elem = *cz[x].begin();
                    polacz(p, elem);
                    polacz(p, x);
                    //rozlacz(p, elem);
                }
            }
            else {
                //cout << "posiadaja wspolny element, mozna laczyc\n";
                polacz(x, p);
            }
        }
    }
}



inline void niszcz(const int& p) {
    //cout << "fixing...\n";

    for (const auto& x: cz[p]) {
        
        //cout << x << ": ";
        if (!wym[p].count(x)) {
            // cout << "nie istnieje\n";
            // cout << "tworze polaczenie miedzy: " << p << ' ' << x << '\n';

            std::set<int> intersection;
            std::set_intersection(cz[p].begin(), cz[p].end(), cz[x].begin(), cz[x].end(),
            std::inserter(intersection, intersection.begin()));


            if (intersection.empty()) {
                //cout << "nie posiadaja zadnych wspolnych elementow :(\n";
                int elem = 0;
                if (!cz[p].empty()) {
                    elem = *cz[p].begin();
                    polacz(x, elem);
                    rozlacz(p, x);
                    rozlacz(x, elem);
                } else if (!cz[x].empty()) {
                    elem = *cz[x].begin();
                    polacz(p, elem);
                    rozlacz(p, x);
                    rozlacz(p, elem);
                }
            }
            else {
                //cout << "posiadaja wspolny element, mozna laczyc\n";
                rozlacz(x, p);
            }
        }
    }
}


int main() {

    scanf("%d%d", &n, &wizB);
    for (int i = 0; i < wizB; i++) {
        int res1, res2;
        scanf("%d%d", &res1, &res2);
        cz[res1].insert(res2);
        cz[res2].insert(res1);
    }

    scanf("%d", &wizD);
    for (int i = 0; i < wizD; i++) {
        int res1, res2;
        scanf("%d%d", &res1, &res2);
        wym[res1].insert(res2);
        wym[res2].insert(res1);
    }


    for (int i = 1; i <= n; i++) {
       
        if ((cz[i] != wym[i]) && (cz[i].size() <= wym[i].size())) buduj(i);
    }

    for (int i = 1; i <= n; i++) {
       
        if ((cz[i] != wym[i]) && (cz[i].size() > wym[i].size())) niszcz(i);
    }

    printf("%d\n", (int)mainRegister.size());
    for (int i = 0; i < mainRegister.size(); i++)
        printf("%s\n", mainRegister[i].c_str());

    return 0;
}