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
#include<bits/stdc++.h>
#define mp make_pair
#define pb push_back
using namespace std;
int n, m, a, b, k, wynik;
long long ile;
vector<pair<int, int>> v[4];
bitset<1000009> tab[4];
int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	//freopen("input.txt", "r", stdin);
	//freopen("output.txt", "w", stdout);
	cin>>n>>m;
	for(int i=0; i<m; i++){
		cin>>a>>b>>k;
		v[k].pb(mp(a, b));
	}
	for(int i=1; i<=3; i++)
		sort(v[i].begin(), v[i].end());
	for(int i=1; i<=3; i++){
		int o=0;
		for(auto pa:v[i]){
			a=max(pa.first, o);
			b=pa.second;
			for(int j=a; j<=b; j++)
				tab[i][j]=1;
			o=max(o, b+1);
		}
	}
	for(int i=1; i<=n; i++){
		if(tab[1][i]==1 && tab[2][i]==1 && tab[3][i]==0)
			wynik++;
	}
	cout<<wynik<<"\n";
	return 0;
}