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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include<bits/stdc++.h>
using namespace std;
struct para
{
    int a,b;
};

bool operator<(para a,para b)
{
    if(a.a == b.a)
        return a.b < b.b;
    return a.a < b.a;
}
int main()
{
    ios_base::sync_with_stdio(0);
    int n;
    cin >> n;
    vector<int> vec[2];
    for(int k=0;k<n;k++)
    {
        int a,b,c;
        cin >> a >> b >> c;
        vec[a-1].push_back(b-c);
    }
    sort(vec[1].begin(),vec[1].end());
    sort(vec[0].begin(),vec[0].end());
    vector<para> tab[2];
    for(int i=0;i<2;i++)
    {

    int last = -10000000;
    int ile = 0;
    for(int k=0;k<vec[i].size();k++)
    {
        if(last!=vec[i][k])
        {
            if(k!=0)
                tab[i].push_back({last,ile});
            last= vec[i][k];
            ile = 1;
        }
        else
            ile++;
    }
    tab[i].push_back({last,ile});
    sort(tab[i].begin(),tab[i].end());
    }
    int l= 0,r = 0;
    int result = 0;
    while( l < tab[0].size() && r < tab[1].size())
    {
        //cout << l << " " <<r <<endl;
        while(l < tab[0].size() && tab[0][l].a < tab[1][r].a)
            l++;
        while(r < tab[1].size() && tab[0][l].a > tab[1][r].a)
            r++;
        if( l < tab[0].size() && r < tab[1].size() && tab[0][l].a == tab[1][r].a)
        {
            result +=min(tab[0][l].b,tab[1][r].b);
            l++;
            r++;
        }
    }
    cout <<result<<endl;

}