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
#include<bits/stdc++.h>
using namespace std;

int d=1000000;
int t2[2000006][2];

int n,r,w,t;

int wyn;

int main(){

	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	
	cin>>n;
	while(n--){
		cin>>r>>w>>t;
		t2[d+t-w][r==1]++;
	}	
	
	for(int i=0;i<=2000000;i++) wyn+=min(t2[i][0],t2[i][1]);
	cout<<wyn;
	return 0;
}