#include #include #define rep(i,n) for(int i=0;i P; template ostream& operator<<(ostream& os, const static_modint& a) {os << a.val(); return os;} template ostream& operator<<(ostream& os, const dynamic_modint& a) {os << a.val(); return os;} template istream& operator>>(istream& is, static_modint& a) {long long x; is >> x; a = x; return is;} template istream& operator>>(istream& is, dynamic_modint& a) {long long x; is >> x; a = x; return is;} template istream& operator>>(istream& is, vector& v){int n = v.size(); assert(n > 0); rep(i, n) is >> v[i]; return is;} template ostream& operator<<(ostream& os, const pair& p){os << p.first << ' ' << p.second; return os;} template ostream& operator<<(ostream& os, const vector& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : " "); return os;} template ostream& operator<<(ostream& os, const vector>& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : ""); return os;} template ostream& operator<<(ostream& os, const set& se){for(T x : se) os << x << " "; os << "\n"; return os;} template ostream& operator<<(ostream& os, const unordered_set& se){for(T x : se) os << x << " "; os << "\n"; return os;} template ostream& operator<<(ostream& os, const atcoder::segtree& seg){int n = seg.max_right(0, [](S){return true;}); rep(i, n) os << seg.get(i) << (i == n - 1 ? "\n" : " "); return os;} template ostream& operator<<(ostream& os, const atcoder::lazy_segtree& seg){int n = seg.max_right(0, [](S){return true;}); rep(i, n) os << seg.get(i) << (i == n - 1 ? "\n" : " "); return os;} template void chmin(T& a, T b){a = min(a, b);} template void chmax(T& a, T b){a = max(a, b);} const int INF = 1001001001; using S = pair; S op(S a, S b){ if(a.first < b.first) return a; if(a.first > b.first) return b; if(a.first == b.first) return S{a.first, a.second + b.second}; } S e(){ return S{INF, 0}; } using F = int; S mapping(F f, S x){ return S{x.first + f, x.second}; } F composition(F f, F g){ return f + g; } F id(){ return 0; } int main(){ int n; cin >> n; int q; cin >> q; atcoder::lazy_segtree seg(n); rep(i, n){ seg.set(i, S{0, 1}); } vector> Query; rep(_, q){ int t; cin >> t; if(t == 1){ int l, r; cin >> l >> r; l--; r--; seg.apply(l, r, +1); Query.emplace_back(1, l, r); } if(t == 2){ int i; cin >> i; i--; auto [dummy, l, r] = Query[i]; seg.apply(l, r, -1); Query.emplace_back(2, i, 0); } if(t == 3){ auto x = seg.all_prod(); cout << x.second << "\n"; Query.emplace_back(3, 0, 0); } } return 0; }