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

int w=0;
int l,r,k,m,n,s;


int main()
{
    cin>>n;
    cin>>m;
    bool tab[n+1][4];
    for(int i=1; i<=n; i++)
    {
        for(int j=1; j<=3; j++)
        {
            tab[i][j]=false;
        }}

        for(int i=0; i<m; i++)
        {
            cin>>l;
            cin>>r;
            cin>>k;

            for(int z=l; z<=r; z++)
            {
                tab[z][k]=true;
            }
        }

        for(int i=1; i<=n; i++)
        {
            if(tab[i][1]==true && tab[i][2]==true && tab[i][3]==false)
                w++;
        }



        cout<<w;
        return 0;
    }