#include <iostream> #include <vector> using namespace std; const int stala=110; vector<int>wektor[stala]; int ind[stala]; int licznik=0; int dobre; void dfs(int k) { if(!wektor[k].empty()) { int nxt=wektor[k][ind[k]]; if(ind[k]==0&&(int)wektor[k].size()!=1) { dobre--; } else if(ind[k]==(int)wektor[k].size()-1&&(int)wektor[k].size()!=1) { dobre++; } ind[k]=(ind[k]+1)%(int)wektor[k].size(); dfs(nxt); } } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int ile; cin>>ile; for(int i=1; i<=ile; i++) { int ile2; cin>>ile2; for(int j=1; j<=ile2; j++) { int a; cin>>a; wektor[i].push_back(a); } } dobre=ile; do { licznik++; dfs(1); } while(dobre!=ile); cout<<licznik; 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 | #include <iostream> #include <vector> using namespace std; const int stala=110; vector<int>wektor[stala]; int ind[stala]; int licznik=0; int dobre; void dfs(int k) { if(!wektor[k].empty()) { int nxt=wektor[k][ind[k]]; if(ind[k]==0&&(int)wektor[k].size()!=1) { dobre--; } else if(ind[k]==(int)wektor[k].size()-1&&(int)wektor[k].size()!=1) { dobre++; } ind[k]=(ind[k]+1)%(int)wektor[k].size(); dfs(nxt); } } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int ile; cin>>ile; for(int i=1; i<=ile; i++) { int ile2; cin>>ile2; for(int j=1; j<=ile2; j++) { int a; cin>>a; wektor[i].push_back(a); } } dobre=ile; do { licznik++; dfs(1); } while(dobre!=ile); cout<<licznik; return 0; } |