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
#include<iostream>
#include<algorithm>

using namespace std;

pair<int, bool> t[500500];

int main(){
    int n;
    cin >> n;
    int a,b,c;
    for(int i=0;i<n;i++){
        cin >> a >> b >> c;
        t[i]={b-c,a==1};
    }
    sort(t,t+n);
    int wyn=0;
    int p=0,f=0,s=t[0].second;
    for(int i=0;i<n;i++){
        if(t[i].first!=s){
            wyn+=min(p,f);
            s=t[i].first;
            p=0;
            f=0;
        }
        if(t[i].second){
            p++;
        }
        else{
            f++;
        }
    }
    wyn+=min(p,f);
    cout << wyn;
}