#include <iostream> #include <fstream> #include <set> #include <vector> #include <algorithm> //#define testy2137 #ifdef testy2137 #include <ctime> #endif // testy2137 using namespace std; int n; struct dzialanie{ bool czypol; int a; int b; int c; static dzialanie daj(bool wczy, int wa, int wb, int wc){ dzialanie zwrot; zwrot.czypol=wczy; zwrot.a=wa; zwrot.b=wb; zwrot.c=wc; return zwrot; } void odwroc(){ czypol=!czypol; } void wypisz(){ if(czypol) cout << "+ "; else cout << "- "; cout << a+1 << " " << b+1 << " " << //c+1 << endl; } }; vector<dzialanie> * operacje; struct Graf{ set<int>* sas; Graf(){ sas = new set<int>[n]; } void wypisz(){ cout << "WYPISUJE" << endl; for(int i=0; i<n; i++){ cout << i+1<<": "; for(int j : sas[i]) cout << j+1 << " "; cout << endl; } } void connect(int a, int b){ sas[a].insert(b); sas[b].insert(a); } void disconnect(int a, int b){ sas[a].erase(b); sas[b].erase(a); } #ifdef testy2137 void wczytajT(){ connect(0, n-1); for(int i=2; i<n; i++) connect(i-1, i); for(int i=0; i<n; i++) for(int j=i+1; j<n; j++) if(rand() % 2) connect(i, j); } #endif // testy2137 bool kraw(int a, int b){ return sas[a].count(b); } bool _polacz(int a, int b, int c){ if(!kraw(a, c) || !kraw(b, c) || kraw(a, b)) return 0; connect(a, b); operacje->push_back(dzialanie::daj(1, a, b, c)); return 1; } bool _rozlacz(int a, int b, int c){ if(!kraw(a, c) || !kraw(b, c) || !kraw(a, b)) return 0; disconnect(a, b); operacje->push_back(dzialanie::daj(0, a, b, c)); return 1; } void polacz(int a, int b, int c){ if(!_polacz(a, b, c)) { cout << "BLAD" << endl; wypisz(); } } void rozlacz(int a, int b, int c){ if(!_rozlacz(a, b, c)) { cout << "BLAD" << endl; wypisz(); } } void dfs(int i, int rodzic, bool* visited){ if(visited[i]) return; visited[i]=1; if(rodzic==-1){ for(int j : sas[i]) dfs(j, i, visited); return; } if(!kraw(0, i)) polacz(0, i, rodzic); for(int j : sas[i]) dfs(j, i, visited); } void dfs(){ bool * visited = new bool[n]; for(int i=0; i<n; i++) visited[i]=0; dfs(0, -1, visited); delete[] visited; } void upodobnij(Graf& drug){ for(int i=1; i<n; i++){ set<int> spom = sas[i]; for(int j : spom) if(i<j){ rozlacz(i, j, 0); } } for(int i=1; i<n; i++){ set<int> spom = drug.sas[i]; for(int j : spom) if(i<j){ polacz(i, j, 0); } } } Graf(const Graf& Prawy){ sas = new set<int>[n]; for(int i=0; i<n; i++) sas[i]=Prawy.sas[i]; } bool operator==(const Graf& Prawy) const{ for(int i=0; i<n; i++) if(sas[i]!=Prawy.sas[i]) return 0; return 1; } void wczytaj(){ int m; scanf("%d", &m); int a, b; for(int i=0; i<m; i++){ scanf("%d %d", &a, &b); connect(a-1, b-1); } } void wykonaj(vector<dzialanie>& ciag){ operacje = new vector<dzialanie>(); for(int i=0; i<ciag.size(); i++){ ciag[i].wypisz(); if(ciag[i].czypol) polacz(ciag[i].a, ciag[i].b, ciag[i].c); else rozlacz(ciag[i].a, ciag[i].b, ciag[i].c); } delete operacje; } }; int main() { cin.sync_with_stdio(0); cin.tie(0); #ifdef testy2137 srand(time(NULL)); #endif // testy2137 scanf("%d", &n); Graf wejscie; wejscie.wczytaj(); Graf kopia1(wejscie); //wejscie.wypisz(); //kopia1.wypisz(); Graf wyjscie; wyjscie.wczytaj(); Graf kopia2(wyjscie); //wyjscie.wypisz(); //kopia2.wypisz(); vector<dzialanie> zwyk; vector<dzialanie> odw; operacje = &odw; wyjscie.dfs(); //wyjscie.wypisz(); //kopia2.wypisz(); for(int i=0; i<odw.size(); i++) odw[i].odwroc(); std::reverse(odw.begin(), odw.end()); operacje = &zwyk; wejscie.dfs(); wejscie.upodobnij(wyjscie); cout << zwyk.size()+odw.size() << endl; kopia1.wykonaj(zwyk); kopia1.wykonaj(odw); /* if(kopia1==kopia2) cout << "OK" <<endl; else {cout << "CHUJ" <<endl; kopia1.wypisz(); kopia2.wypisz(); } */ return 0; }
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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | #include <iostream> #include <fstream> #include <set> #include <vector> #include <algorithm> //#define testy2137 #ifdef testy2137 #include <ctime> #endif // testy2137 using namespace std; int n; struct dzialanie{ bool czypol; int a; int b; int c; static dzialanie daj(bool wczy, int wa, int wb, int wc){ dzialanie zwrot; zwrot.czypol=wczy; zwrot.a=wa; zwrot.b=wb; zwrot.c=wc; return zwrot; } void odwroc(){ czypol=!czypol; } void wypisz(){ if(czypol) cout << "+ "; else cout << "- "; cout << a+1 << " " << b+1 << " " << //c+1 << endl; } }; vector<dzialanie> * operacje; struct Graf{ set<int>* sas; Graf(){ sas = new set<int>[n]; } void wypisz(){ cout << "WYPISUJE" << endl; for(int i=0; i<n; i++){ cout << i+1<<": "; for(int j : sas[i]) cout << j+1 << " "; cout << endl; } } void connect(int a, int b){ sas[a].insert(b); sas[b].insert(a); } void disconnect(int a, int b){ sas[a].erase(b); sas[b].erase(a); } #ifdef testy2137 void wczytajT(){ connect(0, n-1); for(int i=2; i<n; i++) connect(i-1, i); for(int i=0; i<n; i++) for(int j=i+1; j<n; j++) if(rand() % 2) connect(i, j); } #endif // testy2137 bool kraw(int a, int b){ return sas[a].count(b); } bool _polacz(int a, int b, int c){ if(!kraw(a, c) || !kraw(b, c) || kraw(a, b)) return 0; connect(a, b); operacje->push_back(dzialanie::daj(1, a, b, c)); return 1; } bool _rozlacz(int a, int b, int c){ if(!kraw(a, c) || !kraw(b, c) || !kraw(a, b)) return 0; disconnect(a, b); operacje->push_back(dzialanie::daj(0, a, b, c)); return 1; } void polacz(int a, int b, int c){ if(!_polacz(a, b, c)) { cout << "BLAD" << endl; wypisz(); } } void rozlacz(int a, int b, int c){ if(!_rozlacz(a, b, c)) { cout << "BLAD" << endl; wypisz(); } } void dfs(int i, int rodzic, bool* visited){ if(visited[i]) return; visited[i]=1; if(rodzic==-1){ for(int j : sas[i]) dfs(j, i, visited); return; } if(!kraw(0, i)) polacz(0, i, rodzic); for(int j : sas[i]) dfs(j, i, visited); } void dfs(){ bool * visited = new bool[n]; for(int i=0; i<n; i++) visited[i]=0; dfs(0, -1, visited); delete[] visited; } void upodobnij(Graf& drug){ for(int i=1; i<n; i++){ set<int> spom = sas[i]; for(int j : spom) if(i<j){ rozlacz(i, j, 0); } } for(int i=1; i<n; i++){ set<int> spom = drug.sas[i]; for(int j : spom) if(i<j){ polacz(i, j, 0); } } } Graf(const Graf& Prawy){ sas = new set<int>[n]; for(int i=0; i<n; i++) sas[i]=Prawy.sas[i]; } bool operator==(const Graf& Prawy) const{ for(int i=0; i<n; i++) if(sas[i]!=Prawy.sas[i]) return 0; return 1; } void wczytaj(){ int m; scanf("%d", &m); int a, b; for(int i=0; i<m; i++){ scanf("%d %d", &a, &b); connect(a-1, b-1); } } void wykonaj(vector<dzialanie>& ciag){ operacje = new vector<dzialanie>(); for(int i=0; i<ciag.size(); i++){ ciag[i].wypisz(); if(ciag[i].czypol) polacz(ciag[i].a, ciag[i].b, ciag[i].c); else rozlacz(ciag[i].a, ciag[i].b, ciag[i].c); } delete operacje; } }; int main() { cin.sync_with_stdio(0); cin.tie(0); #ifdef testy2137 srand(time(NULL)); #endif // testy2137 scanf("%d", &n); Graf wejscie; wejscie.wczytaj(); Graf kopia1(wejscie); //wejscie.wypisz(); //kopia1.wypisz(); Graf wyjscie; wyjscie.wczytaj(); Graf kopia2(wyjscie); //wyjscie.wypisz(); //kopia2.wypisz(); vector<dzialanie> zwyk; vector<dzialanie> odw; operacje = &odw; wyjscie.dfs(); //wyjscie.wypisz(); //kopia2.wypisz(); for(int i=0; i<odw.size(); i++) odw[i].odwroc(); std::reverse(odw.begin(), odw.end()); operacje = &zwyk; wejscie.dfs(); wejscie.upodobnij(wyjscie); cout << zwyk.size()+odw.size() << endl; kopia1.wykonaj(zwyk); kopia1.wykonaj(odw); /* if(kopia1==kopia2) cout << "OK" <<endl; else {cout << "CHUJ" <<endl; kopia1.wypisz(); kopia2.wypisz(); } */ return 0; } |