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
#include<bits/stdc++.h>
using namespace std;
const int R=1e6;
int v1[3*R+6],v2[3*R+6];
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,w,t;cin>>r>>w>>t;
        int id=w-t;
        if(id<0)
        {
            id=-id+2*R;
        }
        if(r==1)v1[id]++;
        else v2[id]++;
    }
    int res=0;
    for(int i=0;i<=3*R;i++)
    {
        if(v1[i]>0&&v2[i]>0)res+=min(v1[i],v2[i]);
    }
    cout<<res;

}