#include <iostream> #include <set> #include <map> #include <queue> using namespace std; typedef unsigned uint; uint n,m,d,ai,bi; //wierzcholki z listami sasiedztwa map<int,set<int>> V; //wierzcholki po odrzuceniu < d set<int> BV; //lista setow dobrze skomunikowanych vector<set<int>> GP; enum COL {WHITE,GRAY,BLACK}; const uint INF = -1; struct vdata { uint d; COL col; }; void ReadData() { cin>>n>>m>>d; for(int a=1;a<=n;a++) { V[a] = set<int>(); } for(int a=1;a<=m;a++) { cin>>ai>>bi; V[ai].insert(bi); V[bi].insert(ai); } } void cut(int idx){ set<int>* ptr = &V[idx]; for(const auto &i: *ptr){ if(!ptr->empty()) { V[i].erase(idx); if(V[i].size() < d) { cut(i); } } } ptr->clear(); } void echo() { cout<<endl; for(int a=1;a<=n;a++) { auto el = V[a]; cout<<"v: "<<a<<endl; if(!el.empty()) { for(const auto &i: el) { cout<<" "<<i; } cout<<endl; } } cout<<"GP: "<<GP.size()<<endl; cout<<"BV: "<<BV.size()<<endl; for(auto &s: GP) { cout<<s.size()<<endl; } } void BFS() { set<int> TMP; vdata vp[n]; queue<int> Q; for(int i: BV) { vp[i].col = WHITE; vp[i].d = INF; } int s = *BV.begin(); vp[s].col = GRAY; vp[s].d = 0; Q.push(s); int u = 0; while(!Q.empty()){ u = Q.front(); Q.pop(); for(int v: V[u]) { if(vp[v].col == WHITE){ vp[v].col = GRAY; vp[v].d = vp[u].d + 1; Q.push(v); } } vp[u].col = BLACK; TMP.insert(u); BV.erase(u); } GP.push_back(TMP); } void ProcData() { //wywalamy z d mniejszym niz d :) //i updatujemy powiazane for(int a=1;a<=n;a++) { set<int>* ptr = &V[a]; if(!ptr->empty() && ptr->size() < d){ cut(a); } } //Pozostale przenosimy do seta i wyszukujemy polaczone grupy //dopoki set nie bedzie pusty for(int a=1;a<=n;a++) { if(!V[a].empty()) { BV.insert(a); } } while(BV.size() >= 2) { BFS(); } //wybieramy najliczniejszy set (jak rowne to pierwszy z brzegu) if(GP.size() == 0) { cout<<"NIE"<<endl; } else { int maxsize = 0; set<int>* ptr = nullptr; for(auto &el: GP) { if(el.size() > maxsize) { maxsize = el.size(); ptr = ⪙ } } cout<<maxsize<<endl; for(int i: *ptr) { cout<<i<<" "; } cout<<endl; } } int main() { ios_base::sync_with_stdio(false); ReadData(); ProcData(); //echo(); 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 | #include <iostream> #include <set> #include <map> #include <queue> using namespace std; typedef unsigned uint; uint n,m,d,ai,bi; //wierzcholki z listami sasiedztwa map<int,set<int>> V; //wierzcholki po odrzuceniu < d set<int> BV; //lista setow dobrze skomunikowanych vector<set<int>> GP; enum COL {WHITE,GRAY,BLACK}; const uint INF = -1; struct vdata { uint d; COL col; }; void ReadData() { cin>>n>>m>>d; for(int a=1;a<=n;a++) { V[a] = set<int>(); } for(int a=1;a<=m;a++) { cin>>ai>>bi; V[ai].insert(bi); V[bi].insert(ai); } } void cut(int idx){ set<int>* ptr = &V[idx]; for(const auto &i: *ptr){ if(!ptr->empty()) { V[i].erase(idx); if(V[i].size() < d) { cut(i); } } } ptr->clear(); } void echo() { cout<<endl; for(int a=1;a<=n;a++) { auto el = V[a]; cout<<"v: "<<a<<endl; if(!el.empty()) { for(const auto &i: el) { cout<<" "<<i; } cout<<endl; } } cout<<"GP: "<<GP.size()<<endl; cout<<"BV: "<<BV.size()<<endl; for(auto &s: GP) { cout<<s.size()<<endl; } } void BFS() { set<int> TMP; vdata vp[n]; queue<int> Q; for(int i: BV) { vp[i].col = WHITE; vp[i].d = INF; } int s = *BV.begin(); vp[s].col = GRAY; vp[s].d = 0; Q.push(s); int u = 0; while(!Q.empty()){ u = Q.front(); Q.pop(); for(int v: V[u]) { if(vp[v].col == WHITE){ vp[v].col = GRAY; vp[v].d = vp[u].d + 1; Q.push(v); } } vp[u].col = BLACK; TMP.insert(u); BV.erase(u); } GP.push_back(TMP); } void ProcData() { //wywalamy z d mniejszym niz d :) //i updatujemy powiazane for(int a=1;a<=n;a++) { set<int>* ptr = &V[a]; if(!ptr->empty() && ptr->size() < d){ cut(a); } } //Pozostale przenosimy do seta i wyszukujemy polaczone grupy //dopoki set nie bedzie pusty for(int a=1;a<=n;a++) { if(!V[a].empty()) { BV.insert(a); } } while(BV.size() >= 2) { BFS(); } //wybieramy najliczniejszy set (jak rowne to pierwszy z brzegu) if(GP.size() == 0) { cout<<"NIE"<<endl; } else { int maxsize = 0; set<int>* ptr = nullptr; for(auto &el: GP) { if(el.size() > maxsize) { maxsize = el.size(); ptr = ⪙ } } cout<<maxsize<<endl; for(int i: *ptr) { cout<<i<<" "; } cout<<endl; } } int main() { ios_base::sync_with_stdio(false); ReadData(); ProcData(); //echo(); return 0; } |