#include <iostream> #include <queue> #include <vector> #include <algorithm> using namespace std; void sasiedzi(int m, vector<int> *tab, vector<int> *dru, int *s) { int x, y; for(int i=0; i<m; ++i) { cin >> x >> y; tab[x-1].push_back(y-1); dru[y-1].push_back(x-1); s[y-1]++; } } void wypelnijdwa(vector<int> *tab, vector<int> *dru, int *stopnie, int n) { for(int i=0; i<n; ++i) { for(int j=0; j<tab[i].size(); ++j) { dru[tab[i][j]].push_back(i); stopnie[tab[i][j]]++; } } } void wypelnijtrzy(vector<int> *dru, vector<int> *trzy, int n) { for(int i=0; i<n; ++i) { for(int j=0; j<dru[i].size(); ++j) { trzy[i].push_back(dru[i][j]); for(int z=0; z<trzy[dru[i][j]].size(); ++z) trzy[i].push_back(trzy[dru[i][j]][z]); } } } void topologiczne(int *stopnie, vector<int> &top, queue<int> que, vector<int> *tab, int n) { while(!que.empty()) que.pop(); for(int i=0; i<n; ++i) if(stopnie[i]==0) que.push(i); while(que.size()!=0) { top.push_back(que.front()); for(int i=0; i<tab[que.front()].size(); ++i) { stopnie[tab[que.front()][i]]--; if(stopnie[tab[que.front()][i]]==0) que.push(tab[que.front()][i]); } que.pop(); } } int odleglosc(int i, vector<int> top, vector<int> *dru, int *odl) { int maksimum=-1; int pom=0; if(dru[i].size()==0) maksimum=1; else { for(int j=0; j<dru[i].size(); ++j) { if(odl[dru[i][j]]<0) pom=odleglosc(j, top, dru, odl)+1; //else if(odl[dru[i][j]]==0) pom=odl[dru[i][j]]+2; else pom=odl[dru[i][j]]+1; if(pom>maksimum) maksimum=pom; } } return maksimum; } int main() { cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); int n, m, k; int wynik=0; cin >> n >> m >> k; vector<int> tab[n]; vector<int> druga[n]; vector<int> trzecia[n]; vector<int> pomoc; int wystapienia[n]; int wystapieniawtrzy[n]; int stopnie[n]; int odl[n]; queue <int> que; vector <int> top; for(int i=0; i<n; ++i) { wystapienia[i]=0; wystapieniawtrzy[i]=0; stopnie[i]=0; odl[i]=-1000; } sasiedzi(m, tab, druga, stopnie); if(k==n) { cout << 0 << endl; } else { topologiczne(stopnie, top, que, tab, n); for(int i=0; i<n; ++i) { odl[top[i]]=odleglosc(top[i], top, druga, odl); } wypelnijtrzy(druga, trzecia, n); for(int i=0; i<n; ++i) { for(int j=0; j<trzecia[i].size(); ++j) wystapieniawtrzy[trzecia[i][j]]++; } for(int i=0; i<k; ++i) { int maks=0; int sasiad=0; int wartoscsasiad=0; for(int j=0; j<n; ++j) if(odl[j]>maks) maks=j; for(int j=0; j<n; ++j) { for(int z=0; z<druga[j].size(); ++z) { wystapienia[druga[j][z]]++; } } for(int j=0; j<n; ++j) { if(wystapieniawtrzy[j]*j>=wartoscsasiad) { wartoscsasiad=wystapieniawtrzy[j]*j; sasiad=j; } } tab[sasiad].clear(); for(int i=0; i<n; ++i) { pomoc.clear(); for(int j=0; j<tab[i].size(); ++j) { if(tab[i][j]!=sasiad) pomoc.push_back(tab[i][j]); } tab[i].clear(); for(int j=0; j<pomoc.size(); ++j) tab[i].push_back(pomoc[j]); } top.clear(); for(int j=0; j<n; ++j) { druga[j].clear(); trzecia[j].clear(); odl[j]=-1000; stopnie[j]=0; wystapienia[j]=0; wystapieniawtrzy[j]=0; } wypelnijdwa(tab, druga, stopnie, n); wypelnijtrzy(druga, trzecia, n); for(int j=0; j<n; ++j) { for(int z=0; z<trzecia[j].size(); ++z) wystapieniawtrzy[trzecia[j][z]]++; } topologiczne(stopnie, top, que, tab, n); for(int j=0; j<n; ++j) if(top[j]!=sasiad) odl[top[j]]=odleglosc(top[j], top, druga, odl); odl[sasiad]=0; } for(int i=0; i<n; ++i) if(odl[i]>wynik) wynik=odl[i]; cout << wynik << 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 | #include <iostream> #include <queue> #include <vector> #include <algorithm> using namespace std; void sasiedzi(int m, vector<int> *tab, vector<int> *dru, int *s) { int x, y; for(int i=0; i<m; ++i) { cin >> x >> y; tab[x-1].push_back(y-1); dru[y-1].push_back(x-1); s[y-1]++; } } void wypelnijdwa(vector<int> *tab, vector<int> *dru, int *stopnie, int n) { for(int i=0; i<n; ++i) { for(int j=0; j<tab[i].size(); ++j) { dru[tab[i][j]].push_back(i); stopnie[tab[i][j]]++; } } } void wypelnijtrzy(vector<int> *dru, vector<int> *trzy, int n) { for(int i=0; i<n; ++i) { for(int j=0; j<dru[i].size(); ++j) { trzy[i].push_back(dru[i][j]); for(int z=0; z<trzy[dru[i][j]].size(); ++z) trzy[i].push_back(trzy[dru[i][j]][z]); } } } void topologiczne(int *stopnie, vector<int> &top, queue<int> que, vector<int> *tab, int n) { while(!que.empty()) que.pop(); for(int i=0; i<n; ++i) if(stopnie[i]==0) que.push(i); while(que.size()!=0) { top.push_back(que.front()); for(int i=0; i<tab[que.front()].size(); ++i) { stopnie[tab[que.front()][i]]--; if(stopnie[tab[que.front()][i]]==0) que.push(tab[que.front()][i]); } que.pop(); } } int odleglosc(int i, vector<int> top, vector<int> *dru, int *odl) { int maksimum=-1; int pom=0; if(dru[i].size()==0) maksimum=1; else { for(int j=0; j<dru[i].size(); ++j) { if(odl[dru[i][j]]<0) pom=odleglosc(j, top, dru, odl)+1; //else if(odl[dru[i][j]]==0) pom=odl[dru[i][j]]+2; else pom=odl[dru[i][j]]+1; if(pom>maksimum) maksimum=pom; } } return maksimum; } int main() { cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); int n, m, k; int wynik=0; cin >> n >> m >> k; vector<int> tab[n]; vector<int> druga[n]; vector<int> trzecia[n]; vector<int> pomoc; int wystapienia[n]; int wystapieniawtrzy[n]; int stopnie[n]; int odl[n]; queue <int> que; vector <int> top; for(int i=0; i<n; ++i) { wystapienia[i]=0; wystapieniawtrzy[i]=0; stopnie[i]=0; odl[i]=-1000; } sasiedzi(m, tab, druga, stopnie); if(k==n) { cout << 0 << endl; } else { topologiczne(stopnie, top, que, tab, n); for(int i=0; i<n; ++i) { odl[top[i]]=odleglosc(top[i], top, druga, odl); } wypelnijtrzy(druga, trzecia, n); for(int i=0; i<n; ++i) { for(int j=0; j<trzecia[i].size(); ++j) wystapieniawtrzy[trzecia[i][j]]++; } for(int i=0; i<k; ++i) { int maks=0; int sasiad=0; int wartoscsasiad=0; for(int j=0; j<n; ++j) if(odl[j]>maks) maks=j; for(int j=0; j<n; ++j) { for(int z=0; z<druga[j].size(); ++z) { wystapienia[druga[j][z]]++; } } for(int j=0; j<n; ++j) { if(wystapieniawtrzy[j]*j>=wartoscsasiad) { wartoscsasiad=wystapieniawtrzy[j]*j; sasiad=j; } } tab[sasiad].clear(); for(int i=0; i<n; ++i) { pomoc.clear(); for(int j=0; j<tab[i].size(); ++j) { if(tab[i][j]!=sasiad) pomoc.push_back(tab[i][j]); } tab[i].clear(); for(int j=0; j<pomoc.size(); ++j) tab[i].push_back(pomoc[j]); } top.clear(); for(int j=0; j<n; ++j) { druga[j].clear(); trzecia[j].clear(); odl[j]=-1000; stopnie[j]=0; wystapienia[j]=0; wystapieniawtrzy[j]=0; } wypelnijdwa(tab, druga, stopnie, n); wypelnijtrzy(druga, trzecia, n); for(int j=0; j<n; ++j) { for(int z=0; z<trzecia[j].size(); ++z) wystapieniawtrzy[trzecia[j][z]]++; } topologiczne(stopnie, top, que, tab, n); for(int j=0; j<n; ++j) if(top[j]!=sasiad) odl[top[j]]=odleglosc(top[j], top, druga, odl); odl[sasiad]=0; } for(int i=0; i<n; ++i) if(odl[i]>wynik) wynik=odl[i]; cout << wynik << endl; } return 0; } |