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
#include<bits/stdc++.h>
using namespace std;

int p[1000007][5]; //puszki
int czy[5];
int n, m, poc, kon, kol;
int wynik;

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cin >> n >> m;
    for (int i=1;i<=m;i++){
        cin >> poc >> kon >> kol;
        p[poc][kol]++;
        p[kon+1][kol]--;
    }
    for (int i=1;i<=n;i++){
        for (int k=1;k<=3;k++) {
            czy[k]+=p[i][k];
            p[i][k]=(czy[k]>0);
        }
        if (czy[1] and czy[2] and !czy[3]) wynik++;
    }
    cout << wynik << "\n";
    return 0;
}