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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include<bits/stdc++.h>
using namespace std;

bool tree[2097152][3];
int siz=1048575;

void update(int a, int b, int kolor){
	while(a<b){
		tree[a][kolor]=true;
		tree[b][kolor]=true;
		if(a%2==0){
			a/=2;
		}else{
			a/=2;
			a++;
		}
		if(b%2==1){
			b/=2;
		}else{
			b/=2;
			b--;
		}
	}
	if(a==b) tree[a][kolor]=true;
}

void zlicz(int w, int kolor){
	if(w<=siz){
		w*=2;
		if(tree[w/2][kolor]==true){
			tree[w][kolor]=true;
			tree[w+1][kolor]=true;
		}
		zlicz(w,kolor);
		zlicz(w+1,kolor);
	}	
}

int n,m;
int a,b,kolor;
int wyn=0;

int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	
	cin>>n>>m;
	for(int i=0; i<m; i++){
		cin>>a>>b>>kolor;
		update(a+siz,b+siz,kolor-1);
	}
	zlicz(1,0);
	zlicz(1,1);
	zlicz(1,2);
	
	for(int i=siz+1;i<=siz+n;i++){
		if(tree[i][0]==true && tree[i][1]==true){
			if(tree[i][2]==false) wyn++;
		}
	}
	
	cout<<wyn;
	return 0;
		
}