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
68
69
70
71
72
73
74
75
#include <bits/stdc++.h>

using namespace std;

const int x = 1048576;

int drzewo[3][2*x];

int query(int kolor, int ind){
    int wynik = 0;
    ind += x;
    while (ind!=0){
        wynik+=drzewo[kolor][ind];
        ind/=2;
    }
    return wynik;
}

void dodaj(int kolor, int pocz, int kon){
    pocz+=x;
    kon+=x;
    if (pocz==kon){
        drzewo[kolor][pocz]+=1;
        return;
    }
    drzewo[kolor][pocz]+=1;
    drzewo[kolor][kon]+=1;
    while (pocz!=kon-1){
        if (pocz%2==0){
            drzewo[kolor][pocz+1]+=1;
        }
        if (kon%2==1){
            drzewo[kolor][kon-1]+=1;
        }
        pocz/=2;
        kon/=2;
    }
    return;
}

int main(){
    int n, m;
    cin>>n>>m;
    ios_base::sync_with_stdio();
    cin.tie(0);
    cout.tie(0);

//    dodaj(0, 1, 3);
//    dodaj(0, 0, 2);
//    cout<<query(0, 1)<<endl;
    for (int i = 0; i<m; ++i){
        int pocz, kon, kolor;
        scanf("%d", &pocz);
        scanf("%d", &kon);
        scanf("%d", &kolor);
        dodaj(kolor-1, pocz, kon);
    }

    int wynik = 0;
    for (int i = 1; i<=n; ++i){
        if (query(0, i)>0&&query(1, i)>0&&query(2, i)==0){
            ++wynik;
        }
    }

    cout<<wynik;
}
/*
9 5
2 8 1
4 5 2
6 7 3
5 6 2
1 2 2
*/