#include <iostream> using namespace std; int main() { int n, m; cin >> n >> m; int* col = new (nothrow) int[n]; for(int i = 0; i < n; i++) col[i] = 0; for(int i = 0; i < m; i++) { int l, r, k; cin >> l >> r >> k; if(k == 3) k = 4; for(int j = l-1; j <= r-1; j++) { col[j] |= k; } } int count = 0; for(int i = 0; i < n; i++) if(col[i] == 3) count++; cout << count; delete[] col; 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 | #include <iostream> using namespace std; int main() { int n, m; cin >> n >> m; int* col = new (nothrow) int[n]; for(int i = 0; i < n; i++) col[i] = 0; for(int i = 0; i < m; i++) { int l, r, k; cin >> l >> r >> k; if(k == 3) k = 4; for(int j = l-1; j <= r-1; j++) { col[j] |= k; } } int count = 0; for(int i = 0; i < n; i++) if(col[i] == 3) count++; cout << count; delete[] col; return 0; } |