1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <bits/stdc++.h>

using namespace std;

const int max_n = 2e6 + 5;

int xd[2][max_n];

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n, typ, a, b, wynik = 0;
    cin >> n;
    while (n--){
        cin >> typ >> a >> b;
        xd[typ - 1][a - b + 1000000]++;
    }
    for (int i = 0; i <= 2e6; i++)
        wynik += min(xd[0][i], xd[1][i]);
    cout << wynik << "\n";
    return 0;
}