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
36
37
38
39
40
41
#include <iostream>
#include <map>
#include <set>
using namespace std;
map<int,int>mapka;
map<int,int>mapka2;
set<int>secik;
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int ile;
    cin>>ile;
    for(int i=1;i<=ile;i++)
    {
        int typ,pozycja,czas;
        cin>>typ>>pozycja>>czas;
        if(typ==1)
        {
            secik.insert(pozycja-czas);
            mapka[pozycja-czas]++;
        }
        else
        {
            mapka2[pozycja-czas]++;
        }
    }
    int l=0;
    while(!secik.empty())
    {
        int pom=*(secik.begin());
        secik.erase(secik.begin());
        l+=min(mapka[pom],mapka2[pom]);
    }
    cout<<l;



    return 0;
}