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
#include<bits/stdc++.h>
using namespace std;
vector<int>v[106];
int tab[106];
void walizka(int n)
{
   int s=1;
   while(!v[s].empty())
   {
      int id=s;
      s=v[s][tab[s]];
      tab[id]++;
      if(tab[id]>=v[id].size())tab[id]=0;
   }
}
bool check(int n)
{
   for(int i=1;i<=n;i++)
   {
      if(tab[i]!=0)return 0;
   }
   return 1;
}
int main()
{
   ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
   int n;cin>>n;
   for(int i=1;i<=n;i++)
   {
      int r;cin>>r;
      for(int j=1;j<=r;j++)
      {
         int l;cin>>l;
         v[i].push_back(l);
      }
   }
   int cnt=0;
   while(1)
   {
      cnt++;
      walizka(n);
      if(check(n)==1)break;
   }
   cout<<cnt<<"\n";
}