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
#include<algorithm>
#include<cstdio>
#include<queue>

using namespace std;

#define N 30005

class result {
    bool add;
    int a, b;
public:
    result(bool add, int a, int b) {
        this->add = add;
        this->a = a;
        this->b = b;
    }

    void print() {
        printf("%c %d %d\n", (this->add ? '+' : '-'), this->a, this->b);
    }
};

static result* dodaj(int a, int b) {
    auto r = new result(true, a, b);
    return r;
}

static result* usun(int a, int b) {
    auto r = new result(false, a, b);
    return r;
}

class node {
public:
    bool visited = false;
    vector<int> neighbor;
};

vector<int> BFS(int start, node graph[]) {
    vector<int> result;

    queue<int> q;
    graph[start].visited = true;
    q.push(start);

    while (!q.empty()) {
        int currentNode = q.front();
        q.pop();

        result.push_back(currentNode);

        for (int n : graph[currentNode].neighbor) {
            if (!graph[n].visited) {
                graph[n].visited = true;
                q.push(n);
            }
        }
    }

    return result;
}

node graphA[N];
node graphB[N];

int main() {
    vector<result> r;

    int n, ms, md;

    vector<pair<int, int>> vs, vd;
    vector<pair<int, int>> v1s, v1d;

    scanf("%d", &n);

    // + 1. Utworzyć graf
    // + 2. Zebrać wszystkie krawędzie poza wierzchołkiem nr 1 (zbiór A) oraz krawędzie z nr 1
    scanf("%d", &ms);
    for (int i = 0; i < ms; i++) {
        int a, b;
        scanf("%d %d", &a, &b);

        graphA[a].neighbor.push_back(b);
        graphA[b].neighbor.push_back(a);

        if (a != 1 && b != 1) {
            vs.push_back(make_pair(a < b ? a: b, a < b ? b : a));
        }
        else {
            v1s.push_back(make_pair(a < b ? a : b, a < b ? b : a));
        }
    }
    sort(vs.begin(), vs.end());
    sort(v1s.begin(), v1s.end());

    // + 3. Zrobić BFS_1 dla grafu od wierzchołka 1
    auto bfsA = BFS(1, graphA);

    // + 4. Utworzyć graf
    // + 5. Zebrać wszystkie krawędzie poza wierzchołkiem nr 1 (zbiór B) oraz krawędzie z nr 1
    scanf("%d", &md);
    for (int i = 0; i < md; i++) {
        int a, b;
        scanf("%d %d", &a, &b);

        graphB[a].neighbor.push_back(b);
        graphB[b].neighbor.push_back(a);

        if (a != 1 && b != 1) {
            vd.push_back(make_pair(a < b ? a : b, a < b ? b : a));
        }
        else {
            v1d.push_back(make_pair(a < b ? a : b, a < b ? b : a));
        }
    }
    sort(vd.begin(), vd.end());
    sort(v1d.begin(), v1d.end());

    // + 6. Zrobić BFS_2 dla grafu od wierzchołka 1
    auto bfsB = BFS(1, graphB);

    // + 7. Dodać wszystkie nieistniejące krawędzie z nr 1 do wierzchołków z BFS_1
    for (auto it = bfsA.begin(); it != bfsA.end(); ++it) {
        if (*it != 1) {
            if (!binary_search(v1s.begin(), v1s.end(), make_pair(1, *it))) {
                r.push_back(*dodaj(1, *it));
            }
        }
    }

    // + 8. Dodać wszystkie krawędzie ze zbioru B, których nie ma w A
    for (auto it = vd.begin(); it != vd.end(); ++it) {
        if (!binary_search(vs.begin(), vs.end(), *it)) {
            r.push_back(*dodaj(it->first, it->second));
        }
    }

    // + 9. Usunąć wszystkie krawędzie ze zbioru A, których nie ma w B
    for (auto it = vs.begin(); it != vs.end(); ++it) {
        if (!binary_search(vd.begin(), vd.end(), *it)) {
            r.push_back(*usun(it->first, it->second));
        }
    }

    // + 10. Usunać wszystkie nadmiarowe krawędzie z wierzochołka 1 do wierzchołków z BFS_2 w odwrotnej kolejności
    for (auto it = bfsB.rbegin(); it != bfsB.rend(); ++it) {
        if (*it != 1) {
            if (!binary_search(v1d.begin(), v1d.end(), make_pair(1, *it))) {
                r.push_back(*usun(1, *it));
            }
        }
    }

    // + 11. Wypisać wynik
    printf("%zd\n", r.size());
    for (auto it = r.begin(); it != r.end(); ++it) {
        it->print();
    }

    return 0;
}