#include <iostream> #include <unordered_set> #include <list> using namespace std; int n, m, d; class Miasto; class MiastaPerDrogi { public: std::unordered_set<Miasto*> *m; MiastaPerDrogi() { created = false; } bool created; void create() { if (!created) { created = true; m = new std::unordered_set<Miasto*>; } } bool isEmpty() { if(!created) return true; if(m->empty())return true; return false; } }; MiastaPerDrogi miastaPerDrogi[200000]; Miasto** miasta; class Miasto { public: std::list<Miasto*> sasiedzi; int liczbaSasiadow; int nodeNumber; bool deleted; bool counted; bool resultSet; Miasto(int k) { nodeNumber = k; liczbaSasiadow = 0; deleted = false; counted = false; resultSet = false; } void addSasiad(Miasto* m) { sasiedzi.push_front(m); liczbaSasiadow ++; } void lowerSasiedzi() { deleted = true; for(auto it=sasiedzi.begin(); it!= sasiedzi.end(); ++it) { if(!(*it)->deleted) { miastaPerDrogi[(*it)->liczbaSasiadow].m->erase((*it)); (*it)->decrement(); miastaPerDrogi[(*it)->liczbaSasiadow].create(); miastaPerDrogi[(*it)->liczbaSasiadow].m->insert((*it)); } } } void decrement() { liczbaSasiadow--; } int count() { if(counted || deleted) return 0; counted = true; int result = 1; for(auto it=sasiedzi.begin(); it!= sasiedzi.end(); ++it) { result += (*it)->count(); } return result; } void setResult() { if(deleted || resultSet) return; resultSet = true; for(auto it=sasiedzi.begin(); it!= sasiedzi.end(); ++it) { (*it)->setResult(); } } }; int main() { std::ios_base::sync_with_stdio(false); cin>>n>>m>>d; miasta = new Miasto*[n+1]; for(int k=1;k<=n;k++) { miasta[k] = new Miasto(k); } int a,b; for(int k=0;k<m;k++) { cin>>a>>b; miasta[a]->addSasiad(miasta[b]); miasta[b]->addSasiad(miasta[a]); } for(int k=1;k<=n;k++) { int gdzie = miasta[k]->liczbaSasiadow; miastaPerDrogi[gdzie].create(); miastaPerDrogi[gdzie].m->insert(miasta[k]); } int counter = 0; for(int k = 0; k < d; k++) { while(!miastaPerDrogi[k].isEmpty()) { auto it = miastaPerDrogi[k].m->begin(); (*it)->lowerSasiedzi(); miastaPerDrogi[k].m->erase(it); if(k>0 && !miastaPerDrogi[k-1].isEmpty()) { k-=2; break; } } } int max=0; int startingNodeMax = -1; for(int k=1;k<=n;k++) { int result = miasta[k]->count(); if(result > max) { max = result; startingNodeMax = k; } } if(max == 0) { cout<<"NIE"<<endl; return 0; } miasta[startingNodeMax]->setResult(); cout<<max<<endl; for(int k=1;k<=n;k++) { if(miasta[k]->resultSet) cout<<k<<" "; } cout<<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 | #include <iostream> #include <unordered_set> #include <list> using namespace std; int n, m, d; class Miasto; class MiastaPerDrogi { public: std::unordered_set<Miasto*> *m; MiastaPerDrogi() { created = false; } bool created; void create() { if (!created) { created = true; m = new std::unordered_set<Miasto*>; } } bool isEmpty() { if(!created) return true; if(m->empty())return true; return false; } }; MiastaPerDrogi miastaPerDrogi[200000]; Miasto** miasta; class Miasto { public: std::list<Miasto*> sasiedzi; int liczbaSasiadow; int nodeNumber; bool deleted; bool counted; bool resultSet; Miasto(int k) { nodeNumber = k; liczbaSasiadow = 0; deleted = false; counted = false; resultSet = false; } void addSasiad(Miasto* m) { sasiedzi.push_front(m); liczbaSasiadow ++; } void lowerSasiedzi() { deleted = true; for(auto it=sasiedzi.begin(); it!= sasiedzi.end(); ++it) { if(!(*it)->deleted) { miastaPerDrogi[(*it)->liczbaSasiadow].m->erase((*it)); (*it)->decrement(); miastaPerDrogi[(*it)->liczbaSasiadow].create(); miastaPerDrogi[(*it)->liczbaSasiadow].m->insert((*it)); } } } void decrement() { liczbaSasiadow--; } int count() { if(counted || deleted) return 0; counted = true; int result = 1; for(auto it=sasiedzi.begin(); it!= sasiedzi.end(); ++it) { result += (*it)->count(); } return result; } void setResult() { if(deleted || resultSet) return; resultSet = true; for(auto it=sasiedzi.begin(); it!= sasiedzi.end(); ++it) { (*it)->setResult(); } } }; int main() { std::ios_base::sync_with_stdio(false); cin>>n>>m>>d; miasta = new Miasto*[n+1]; for(int k=1;k<=n;k++) { miasta[k] = new Miasto(k); } int a,b; for(int k=0;k<m;k++) { cin>>a>>b; miasta[a]->addSasiad(miasta[b]); miasta[b]->addSasiad(miasta[a]); } for(int k=1;k<=n;k++) { int gdzie = miasta[k]->liczbaSasiadow; miastaPerDrogi[gdzie].create(); miastaPerDrogi[gdzie].m->insert(miasta[k]); } int counter = 0; for(int k = 0; k < d; k++) { while(!miastaPerDrogi[k].isEmpty()) { auto it = miastaPerDrogi[k].m->begin(); (*it)->lowerSasiedzi(); miastaPerDrogi[k].m->erase(it); if(k>0 && !miastaPerDrogi[k-1].isEmpty()) { k-=2; break; } } } int max=0; int startingNodeMax = -1; for(int k=1;k<=n;k++) { int result = miasta[k]->count(); if(result > max) { max = result; startingNodeMax = k; } } if(max == 0) { cout<<"NIE"<<endl; return 0; } miasta[startingNodeMax]->setResult(); cout<<max<<endl; for(int k=1;k<=n;k++) { if(miasta[k]->resultSet) cout<<k<<" "; } cout<<endl; return 0; } |