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
#include<iostream>
using namespace std;
int n,m,l,r,k,wynik;
int main()
{
    ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
    cin>>n;
    cin>>m;
    int t[n];
    for(int i=0;i<n;i++){
        t[i]=0;
    }
    for(int i=0;i<m;i++){
        cin>>l;
        cin>>r;
        cin>>k;
        for(int j=l-1;j<r;j++){
            if(k==1){
                if(t[j]==0){
                    t[j]=1;
                }
                if(t[j]==2){
                    t[j]=3;
                }
                
            }
            if(k==2){
                if(t[j]==0){
                    t[j]=2;
                }
                if(t[j]==1){
                    t[j]=3;
                }
            }
            if(k==3){
                t[j]=5;
            }
        }
    }
    for(int i=0;i<n;i++){
        if(t[i]==3){
            wynik++;
        }
    }
    cout<<wynik;
}