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

using namespace std;

struct wierzcholek{
    int poprz,maluj=0;
    vector<int> sciezki;
};

vector<wierzcholek> graf;
vector<pair<int,int>> wzor;

int n;

void wczytaj()
{
    int m;
    cin >> n >> m;

    graf.resize(n);

    for(int i = 0;i<m;i++)
    {
        int a,b;
        cin >> a >> b;

        a--;
        b--;

        graf[a].sciezki.push_back(b);
        graf[b].sciezki.push_back(a);
    }

    cin >> m;

    for(int i = 0;i<m;i++)
    {
        int a,b;
        cin >> a >> b;

        a--;
        b--;

        wzor.push_back({a,b});
    }
}

int maluj_nr=0;

vector<int> wyznacz_najkrotsza(int a,int b)
{
    swap(a,b);

    maluj_nr++;

    queue<int> kolej; //w,poprz
    kolej.push(a);

    graf[a].poprz=-1;
    graf[a].maluj=maluj_nr;

    while(!kolej.empty())
    {
        int w = kolej.front();
        kolej.pop();

        if(w==b)
            break;

        for(int x : graf[w].sciezki)
            if(graf[x].maluj != maluj_nr)
            {
                graf[x].maluj = maluj_nr;
                graf[x].poprz = w;
                kolej.push(x);
            }
    }

    vector<int> trasa;

    int w = b;

    while(w != -1)
    {
        trasa.push_back(w);
        w = graf[w].poprz;
    }

    return trasa;
}

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

    wczytaj();
    vector<pair<int,int>> dodaj,ojmij;

    for(pair<int,int> x : wzor)
    {
        vector<int> trasa = wyznacz_najkrotsza(x.first,x.second);

        for(int i = 2;i<trasa.size();i++)
        {
            dodaj.push_back({x.first+1, trasa[i]+1});

            graf[x.first].sciezki.push_back(trasa[i]);
            graf[trasa[i]].sciezki.push_back(x.first);
        }
    }

    set<pair<int,int>> secik;

    for(pair<int,int> x : wzor)
    {
        secik.insert({x.first,x.second});
        secik.insert({x.second,x.first});
    }

    for(int i = 0;i<n;i++)
        for(int x : graf[i].sciezki)
            if(secik.find({x,i}) == secik.end())
            {
                ojmij.push_back({i+1,x+1});

                secik.insert({x,i});
                secik.insert({i,x});
            }
    
    cout << dodaj.size() + ojmij.size() << "\n";

    for(pair<int,int> x : dodaj)
        cout << "+ " << x.first << " " << x.second << "\n";

    for(pair<int,int> x : ojmij)
        cout << "- " << x.first << " " << x.second << "\n";
}