#include <iostream> using namespace std; int main() { int n,m,r,l,k; cin>>n>>m; int tab[m][n]; bool flag1,flag2,flag3; int cnt=0; for(int o=0;o<m;o++) { for(int p=0;p<n;p++) { tab[o][p]=0; } } for(int i=0;i<m;i++) { cin>>r>>l>>k; for(int j=r-1;j<l;j++) { tab[i][j]=k; } } for(int o=0;o<n;o++) { flag1=false; flag2=false; flag3=false; for(int p=0;p<m;p++) { if(tab[p][o]==1) flag1=true; else if(tab[p][o]==2) flag2=true; else if(tab[p][o]==3) flag3=true; } if(flag1==true&&flag2==true&&flag3==false) cnt++; } cout<<cnt; return 0; }
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 | #include <iostream> using namespace std; int main() { int n,m,r,l,k; cin>>n>>m; int tab[m][n]; bool flag1,flag2,flag3; int cnt=0; for(int o=0;o<m;o++) { for(int p=0;p<n;p++) { tab[o][p]=0; } } for(int i=0;i<m;i++) { cin>>r>>l>>k; for(int j=r-1;j<l;j++) { tab[i][j]=k; } } for(int o=0;o<n;o++) { flag1=false; flag2=false; flag3=false; for(int p=0;p<m;p++) { if(tab[p][o]==1) flag1=true; else if(tab[p][o]==2) flag2=true; else if(tab[p][o]==3) flag3=true; } if(flag1==true&&flag2==true&&flag3==false) cnt++; } cout<<cnt; return 0; } |