#include <iostream> #include <cassert> #include <cstdlib> #include <cstdio> #include <cstdint> #include <tuple> #include <vector> #include <array> #include <algorithm> #include "sabotaz.h" #include "message.h" //#include "sabotaz_test.h" using namespace std; struct miasto { vector<int> sasiedzi; vector<int> sasiedzi_rozp; int parrent; bool odwiedzono; int npreorder; int synow; int hi; int lo; miasto(): odwiedzono(false)/*,odwiedzono(false)*/ { synow=0; lo=numeric_limits<int>::max(); hi = -1; //sasiedzi.max_load_factor(0.2); //sasiedzi.reserve(100); } // void hilo() // { // for () // lo = min_element(begin(sasiedzi),end(sasiedzi)); // hi = min_element(begin(sasiedzi),end(sasiedzi)); // } }; int mostow; uint64_t N, M; vector <miasto> miasta; vector <pair< int , int > > krawedzie; int preorder_licznik; int preorder(int m) { if (miasta[m].odwiedzono) return 0; miasta[m].npreorder = preorder_licznik; preorder_licznik++; miasta[m].odwiedzono=true; int size = 1 ; for (int j=0; j< miasta[m].sasiedzi.size(); j++) { int s = miasta[m].sasiedzi[j]; if (!miasta[s].odwiedzono) { miasta[m].sasiedzi_rozp.push_back(s); // miasta[s].sasiedzi_rozp.push_back(m); size += preorder(s); } } miasta[m].synow=size; return size; } void dfs (int m, int parent) { int hi = miasta[m].npreorder; int lo = miasta[m].npreorder; miasta[m].odwiedzono=true; bool byl_parent=false; for (int j=0;j<miasta[m].sasiedzi.size();j++) { int s= miasta[m].sasiedzi[j]; if (s!=parent || ( byl_parent )) { hi = max(hi, miasta[s].npreorder); lo = min(lo, miasta[s].npreorder); } if (s==parent) byl_parent=true; } for (int j=0;j<miasta[m].sasiedzi_rozp.size();j++) { int s= miasta[m].sasiedzi_rozp[j]; // if (s!=parent) { dfs(s,m); hi = max(hi, miasta[s].hi); lo = min(lo, miasta[s].lo);// } } miasta[m].lo=lo; miasta[m].hi=hi; } void szukaj_mostow(int m) { miasta[m].odwiedzono=true; for (int j=0;j<miasta[m].sasiedzi_rozp.size();j++) { int s= miasta[m].sasiedzi_rozp[j]; if ((miasta[s].lo == miasta[s].npreorder) && (miasta[s].hi < miasta[s].npreorder + miasta[s].synow) ) { //cout<<"most"<<s<<" "<<m<<endl; mostow++; krawedzie.push_back( make_pair( s, m ) ); }else {//nie most krawedzie.push_back( make_pair( -s, -m ) ); } } } void wczytaj_graf( int first, int last ) { for (int i=first;i<last;i++) { int a,b; a=BridgeEndA(i); b=BridgeEndB(i); miasta[a].sasiedzi.push_back(b); miasta[b].sasiedzi.push_back(a); } // for (int i=0;i<N;i++) // { // sort(miasta[i].sasiedzi.begin(),miasta[i].sasiedzi.end()); // } } int wczytaj_graf_krawedzi() { for (int i=0;i<krawedzie.size();i++) { int a,b; tie(a,b) = krawedzie[i]; miasta[a].sasiedzi.push_back(b); miasta[b].sasiedzi.push_back(a); } } void przetwrz_miasta() { preorder_licznik=0; for (int i=0;i<N;i++) { preorder( i ); } for (int i=0;i<N;i++) { miasta[i].odwiedzono=false; //miasta[i].hilo(); } for (int i=0;i<N;i++) { if (miasta[i].odwiedzono==false) dfs( i,-1 ); //miasta[i].odwiedzono=false; } for (int i=0;i<N;i++) miasta[i].odwiedzono=false; for (int i=0;i<N;i++) { if (miasta[i].odwiedzono==false) szukaj_mostow(i); //miasta[i].odwiedzono=false; } } void wyslij_krawedzie( int gdzie ) { PutInt(gdzie, krawedzie.size()); for (int i=0; i<krawedzie.size(); i++ ) { if (i%30000==29999) Send(gdzie); PutInt(gdzie,krawedzie[i].first); PutInt(gdzie,krawedzie[i].second); } Send(gdzie); } void odbierz_krawedzie(int skad) { Receive(skad); int ile; ile = GetInt(skad); for (int i=0; i<ile; i++ ) { if (i%30000==29999) Receive(skad); int a, b; a = GetInt(skad); b = GetInt(skad); if (a+b<0) {//nie most krawedzie.push_back(make_pair(-a,-b)); krawedzie.push_back(make_pair(-a,-b)); }else krawedzie.push_back(make_pair(a,b)); //most } } int main() { N = NumberOfIsles(); M = NumberOfBridges(); mostow=0; miasta.resize(N); int node = MyNodeId(); int NN = NumberOfNodes(); wczytaj_graf( (node*M)/NN , ((node+1)*M)/NN); przetwrz_miasta(); // cout<<mostow<<endl; wyslij_krawedzie(0); if (MyNodeId()==0) { miasta.clear(); miasta.resize(N); krawedzie.resize(0); for (int i=0;i<NumberOfNodes();i++) odbierz_krawedzie(i); wczytaj_graf_krawedzi(); //cout<<" krawedzie"<<krawedzie.size()<<endl; mostow=0; przetwrz_miasta(); cout <<mostow<< endl; }else miasta.resize(0); // for(int i=0;i<N;i++) // { // cout<<"miasto "<<i<<" o indeksie preorder " << miasta[i].npreorder<<endl; // cout<<miasta[i].lo<<" "<<miasta[i].hi<<" "<<miasta[i].synow<<endl; // cout<<"rozpiecie "; // for (int j=0;j<miasta[i].sasiedzi_rozp.size();j++) // { // cout<< miasta[i].sasiedzi_rozp[j]<<" "; // } // cout<<endl<< " sasiedzi" <<endl; // for (int j=0;j<miasta[i].sasiedzi.size();j++) // { // cout<< miasta[i].sasiedzi[j]<<" "; // } // cout<<endl; // } // for (int i=0;i<krawedzie.size();i++) // { // cout<<krawedzie[i].first<<" "<<krawedzie[i].second<<endl; // } 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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | #include <iostream> #include <cassert> #include <cstdlib> #include <cstdio> #include <cstdint> #include <tuple> #include <vector> #include <array> #include <algorithm> #include "sabotaz.h" #include "message.h" //#include "sabotaz_test.h" using namespace std; struct miasto { vector<int> sasiedzi; vector<int> sasiedzi_rozp; int parrent; bool odwiedzono; int npreorder; int synow; int hi; int lo; miasto(): odwiedzono(false)/*,odwiedzono(false)*/ { synow=0; lo=numeric_limits<int>::max(); hi = -1; //sasiedzi.max_load_factor(0.2); //sasiedzi.reserve(100); } // void hilo() // { // for () // lo = min_element(begin(sasiedzi),end(sasiedzi)); // hi = min_element(begin(sasiedzi),end(sasiedzi)); // } }; int mostow; uint64_t N, M; vector <miasto> miasta; vector <pair< int , int > > krawedzie; int preorder_licznik; int preorder(int m) { if (miasta[m].odwiedzono) return 0; miasta[m].npreorder = preorder_licznik; preorder_licznik++; miasta[m].odwiedzono=true; int size = 1 ; for (int j=0; j< miasta[m].sasiedzi.size(); j++) { int s = miasta[m].sasiedzi[j]; if (!miasta[s].odwiedzono) { miasta[m].sasiedzi_rozp.push_back(s); // miasta[s].sasiedzi_rozp.push_back(m); size += preorder(s); } } miasta[m].synow=size; return size; } void dfs (int m, int parent) { int hi = miasta[m].npreorder; int lo = miasta[m].npreorder; miasta[m].odwiedzono=true; bool byl_parent=false; for (int j=0;j<miasta[m].sasiedzi.size();j++) { int s= miasta[m].sasiedzi[j]; if (s!=parent || ( byl_parent )) { hi = max(hi, miasta[s].npreorder); lo = min(lo, miasta[s].npreorder); } if (s==parent) byl_parent=true; } for (int j=0;j<miasta[m].sasiedzi_rozp.size();j++) { int s= miasta[m].sasiedzi_rozp[j]; // if (s!=parent) { dfs(s,m); hi = max(hi, miasta[s].hi); lo = min(lo, miasta[s].lo);// } } miasta[m].lo=lo; miasta[m].hi=hi; } void szukaj_mostow(int m) { miasta[m].odwiedzono=true; for (int j=0;j<miasta[m].sasiedzi_rozp.size();j++) { int s= miasta[m].sasiedzi_rozp[j]; if ((miasta[s].lo == miasta[s].npreorder) && (miasta[s].hi < miasta[s].npreorder + miasta[s].synow) ) { //cout<<"most"<<s<<" "<<m<<endl; mostow++; krawedzie.push_back( make_pair( s, m ) ); }else {//nie most krawedzie.push_back( make_pair( -s, -m ) ); } } } void wczytaj_graf( int first, int last ) { for (int i=first;i<last;i++) { int a,b; a=BridgeEndA(i); b=BridgeEndB(i); miasta[a].sasiedzi.push_back(b); miasta[b].sasiedzi.push_back(a); } // for (int i=0;i<N;i++) // { // sort(miasta[i].sasiedzi.begin(),miasta[i].sasiedzi.end()); // } } int wczytaj_graf_krawedzi() { for (int i=0;i<krawedzie.size();i++) { int a,b; tie(a,b) = krawedzie[i]; miasta[a].sasiedzi.push_back(b); miasta[b].sasiedzi.push_back(a); } } void przetwrz_miasta() { preorder_licznik=0; for (int i=0;i<N;i++) { preorder( i ); } for (int i=0;i<N;i++) { miasta[i].odwiedzono=false; //miasta[i].hilo(); } for (int i=0;i<N;i++) { if (miasta[i].odwiedzono==false) dfs( i,-1 ); //miasta[i].odwiedzono=false; } for (int i=0;i<N;i++) miasta[i].odwiedzono=false; for (int i=0;i<N;i++) { if (miasta[i].odwiedzono==false) szukaj_mostow(i); //miasta[i].odwiedzono=false; } } void wyslij_krawedzie( int gdzie ) { PutInt(gdzie, krawedzie.size()); for (int i=0; i<krawedzie.size(); i++ ) { if (i%30000==29999) Send(gdzie); PutInt(gdzie,krawedzie[i].first); PutInt(gdzie,krawedzie[i].second); } Send(gdzie); } void odbierz_krawedzie(int skad) { Receive(skad); int ile; ile = GetInt(skad); for (int i=0; i<ile; i++ ) { if (i%30000==29999) Receive(skad); int a, b; a = GetInt(skad); b = GetInt(skad); if (a+b<0) {//nie most krawedzie.push_back(make_pair(-a,-b)); krawedzie.push_back(make_pair(-a,-b)); }else krawedzie.push_back(make_pair(a,b)); //most } } int main() { N = NumberOfIsles(); M = NumberOfBridges(); mostow=0; miasta.resize(N); int node = MyNodeId(); int NN = NumberOfNodes(); wczytaj_graf( (node*M)/NN , ((node+1)*M)/NN); przetwrz_miasta(); // cout<<mostow<<endl; wyslij_krawedzie(0); if (MyNodeId()==0) { miasta.clear(); miasta.resize(N); krawedzie.resize(0); for (int i=0;i<NumberOfNodes();i++) odbierz_krawedzie(i); wczytaj_graf_krawedzi(); //cout<<" krawedzie"<<krawedzie.size()<<endl; mostow=0; przetwrz_miasta(); cout <<mostow<< endl; }else miasta.resize(0); // for(int i=0;i<N;i++) // { // cout<<"miasto "<<i<<" o indeksie preorder " << miasta[i].npreorder<<endl; // cout<<miasta[i].lo<<" "<<miasta[i].hi<<" "<<miasta[i].synow<<endl; // cout<<"rozpiecie "; // for (int j=0;j<miasta[i].sasiedzi_rozp.size();j++) // { // cout<< miasta[i].sasiedzi_rozp[j]<<" "; // } // cout<<endl<< " sasiedzi" <<endl; // for (int j=0;j<miasta[i].sasiedzi.size();j++) // { // cout<< miasta[i].sasiedzi[j]<<" "; // } // cout<<endl; // } // for (int i=0;i<krawedzie.size();i++) // { // cout<<krawedzie[i].first<<" "<<krawedzie[i].second<<endl; // } return 0; } |