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
#include <iostream>
using namespace std;

const int maxn = 1e6+7;


int tab[maxn][4];
int obe[4], ile;
int n,m,a,b,c;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    cin>>n>>m;
    for(int i = 0; i < m; i++)
    {
        cin>>a>>b>>c;
        tab[a][c] = max( tab[a][c], b);
    }
    for(int i = 1; i <= n; i++)
    {
        for(int j = 1; j <= 3; j++)
        {
            obe[j] = max (tab[i][j], obe[j]);
            if(obe[j] < i) obe[j] = 0;
        }
        if( obe[1] && obe[2] && !obe[3])
            ile++;
    }
    cout<<ile<<'\n';

}