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
#include <bits/stdc++.h>
using namespace std;
#define debug(x) cerr << #x << " " << x << endl;

// #define int long long // uważaj

const int N = 1e6 + 7;
int t[N][4];

void solve(){
    int n, m;
    cin >> n >> m;
    while(m--) {
        int a, b, c;
        cin >> a >> b >> c;
        t[a][c]++;
        t[b + 1][c]--;
    }

    int ans = 0;
    for(int i = 1; i <= n; i++) {
        t[i][1] += t[i - 1][1];
        t[i][2] += t[i - 1][2];
        t[i][3] += t[i - 1][3];

        if(t[i][1] > 0 and t[i][2] > 0 and t[i][3] == 0) {
            ans ++;
        }
    }

    cout << ans << "\n";
}

int32_t main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);

	int test = 1;

	while(test--){
		solve();
	}

	return 0;
}