#include <bits/stdc++.h> using namespace std; bool DFS(vector<vector<int>>& G, vector<int>& licznik, int x) { if (G[x].size() == 0) return 1; if (licznik[x] == 0) { licznik[x] = (licznik[x] + 1) % G[x].size(); return DFS(G, licznik, G[x][0]); } else { DFS(G, licznik, G[x][licznik[x]]); licznik[x] = (licznik[x] + 1) % G[x].size(); return 0; } } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; vector<vector<int>>G(n + 1); vector<int>licznik(n + 1, 0); for (int i = 1; i <= n; i++) { int r; cin >> r; for (int j = 0; j < r; j++) { int x; cin >> x; G[i].push_back(x); } } int it = 0; while (1) { if (DFS(G, licznik, 1) && it != 0) break; it++; } cout << it << "\n"; 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 | #include <bits/stdc++.h> using namespace std; bool DFS(vector<vector<int>>& G, vector<int>& licznik, int x) { if (G[x].size() == 0) return 1; if (licznik[x] == 0) { licznik[x] = (licznik[x] + 1) % G[x].size(); return DFS(G, licznik, G[x][0]); } else { DFS(G, licznik, G[x][licznik[x]]); licznik[x] = (licznik[x] + 1) % G[x].size(); return 0; } } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; vector<vector<int>>G(n + 1); vector<int>licznik(n + 1, 0); for (int i = 1; i <= n; i++) { int r; cin >> r; for (int j = 0; j < r; j++) { int x; cin >> x; G[i].push_back(x); } } int it = 0; while (1) { if (DFS(G, licznik, 1) && it != 0) break; it++; } cout << it << "\n"; return 0; } |