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>
#define fi first
#define se second
using namespace std;
const int Z=1e6+5;
int tab[2][2000010];
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
	int n,r,w,t,i;
	cin>>n;
	for(i=1;i<=n;i++)
	{
		cin>>r>>w>>t;
		tab[r-1][Z+t-w]++;
	}
	int ans=0;
	for(i=0;i<2*Z;i++)
		ans+=min(tab[0][i],tab[1][i]);
	cout<<ans<<"\n";
	return 0;
}