#include <bits/stdc++.h> using namespace std; typedef long long lld; typedef pair<int,int> pii; typedef pair<lld,lld> pll; typedef vector<int> vint; #define ff first #define ss second #define mp make_pair #define pb push_back int p[1000099][3]; int t[4]; int n,m,k,l,r,wyn; int main(){ scanf("%d%d",&n,&m); for(int i=0;i<m;++i){ scanf("%d%d%d",&l,&r,&k); ++p[l-1][k-1]; --p[r][k-1]; } for(int i=0;i<n;++i){ t[0]+=p[i][0]; t[1]+=p[i][1]; t[2]+=p[i][2]; if(t[0]!=0 and t[1]!=0 and t[2]==0) ++wyn; } printf("%d",wyn); return 0; } /* 9 5 2 8 1 4 5 2 6 7 3 5 6 2 1 2 2 */
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> using namespace std; typedef long long lld; typedef pair<int,int> pii; typedef pair<lld,lld> pll; typedef vector<int> vint; #define ff first #define ss second #define mp make_pair #define pb push_back int p[1000099][3]; int t[4]; int n,m,k,l,r,wyn; int main(){ scanf("%d%d",&n,&m); for(int i=0;i<m;++i){ scanf("%d%d%d",&l,&r,&k); ++p[l-1][k-1]; --p[r][k-1]; } for(int i=0;i<n;++i){ t[0]+=p[i][0]; t[1]+=p[i][1]; t[2]+=p[i][2]; if(t[0]!=0 and t[1]!=0 and t[2]==0) ++wyn; } printf("%d",wyn); return 0; } /* 9 5 2 8 1 4 5 2 6 7 3 5 6 2 1 2 2 */ |