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
#include <bits/stdc++.h>
#define SIZE 1048576

using namespace std;
bool brzoza[2*SIZE][4];
bool res[4];

void dodajKolor(int v, int l, int p, int x, int y, int kolor)
{
    if(l>y || p<x) return;
    if(l>=x && p<=y)
    {
        brzoza[v][kolor]=1;
        return;
    }

    int mid = (l+p)/2;
    dodajKolor(2*v, l, mid, x, y, kolor);
    dodajKolor(2*v+1, mid+1, p, x, y, kolor);
}

void sprawdzKolor(int v, int l, int p, int x)
{
    if(l>x || p<x) return;

    if(brzoza[v][1]>0) res[1]=1;
    if(brzoza[v][2]>0) res[2]=1;
    if(brzoza[v][3]>0) res[3]=1;
    
    if(l==x && p==x)
    {
        return;
    }

    int mid = (l+p)/2;
    sprawdzKolor(2*v, l, mid, x);
    sprawdzKolor(2*v+1, mid+1, p, x);
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    
    int n=0,m=0,a=0,b=0,c=0,wyn=0;
    cin >> n >> m;
    for(int i=0; i<m; i++)
    {
        cin >> a >> b >> c;
        dodajKolor(1,1,SIZE-1,a,b,c);
    }

    for(int i=1; i<=n; i++)
    {
        res[0]=res[1]=res[2]=res[3]=0;
        sprawdzKolor(1,1,SIZE-1,i);
        if(res[1] && res[2] && !res[3]) wyn++;
    }

    cout << wyn << endl;
}