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
#include <bits/stdc++.h>
using namespace std;
#define szybkosc ios_base::sync_with_stdio(0); cin.tie(0), cout.tie(0);
#define endl '\n'
#define hui 1005
#define N 1000069

//int tab[N];
multiset<int> mt[N];
vector<int> v;

void solve() {
    int n, res=0;
    cin>>n;
    for(int i = 1; i <= n; i++){
        int k;
        cin>>k;
        if(k != 0)
            for(int j = 1; j <= k; j++){
                int m;
                cin>>m;
                mt[i].insert(m);
            }
        else{
            for(int j = 1; j <= i; j++){
                res += mt[j].count(i);
            }
        }
    }
    cout<<res;
}

int main()
{
    szybkosc;
    solve();
    return 0;
}