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

int kolor[1000001];

int main(){
int p,o,a,b,c,wyn=0;
cin>>p>>o;
for(int i=0;i<o;i++){
    cin>>a>>b>>c;
    if(c==1){
        for(int i=a;i<=b;i++){
            kolor[i]=kolor[i]+1;
            if(kolor[i]==4){
                wyn++;
            }
        }
    }
    if(c==2){
        for(int i=a;i<=b;i++){
            kolor[i]=kolor[i]+3;
            if(kolor[i]==4){
                wyn++;
            }
        }
    }
    if(c==3){
        for(int i=a;i<=b;i++){
            kolor[i]=kolor[i]+5;
        }
    }
}
cout<<wyn;
return 0;
}