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
#include <bits/stdc++.h>
using namespace std;
int n, m;
int j[1000010];
int d[1000010];
int t[1000010];
int main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cin>>n>>m;
	int l, r, k;
	for(int i = 0; i < m; ++i) {
		cin>>l>>r>>k;
		if(k==1) {
			j[l]++; j[r+1]--;
		}
		else if(k==2) {
			d[l]++; d[r+1]--;
		}
		else if(k==3) {
			t[l]++; t[r+1]--;
		}
	}
	int sum = 0;
	int cj, cd, ct;
	cj = cd = ct = 0;
	for(int i = 1; i <= n; ++i) {
		cj += j[i];
		cd += d[i];
		ct += t[i];
		if(cj > 0 && cd > 0 && ct == 0) {
			++sum;
		}
	}
	cout<<sum<<"\n";
	return 0;
}