#include using namespace std; // #include // #include // #include // #include // #include // #include // #include // using namespace atcoder; // #pragma GCC target("avx2") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") typedef long long int ll; typedef unsigned long long ull; typedef long double ld; typedef pair pll; typedef vector vll; typedef vector vvll; typedef vector vvvll; typedef vector vpll; typedef vector vvpll; typedef vector vb; typedef vector vvb; typedef vector vd; typedef vector vvd; typedef priority_queue > pqpll; typedef priority_queue > pqll; struct edge{ ll to, cost; edge(ll e_to,ll e_cost): to(e_to), cost(e_cost){} }; typedef vector> Graph; #define rep(i,a,n) for(ll i = a;i < n;i++) #define rrep(i,a,n) for(ll i = n-1; i >= a;i--) #define LINF (1LL << 60) #define INF (1 << 30) #define fs first #define sc second #define EPS (ld)1e-10 #define ALL(a) a.begin(), a.end() #define tcheck(a) if((clock() - start)/(ld)CLOCKS_PER_SEC >= a) break #define debug(s) cout << #s << endl #define debugval(x) cout << #x" = " << x << endl template ll sz(vector &pos){ return (ll)pos.size(); } template ll sz(priority_queue > &que) {return (ll)que.size(); } template ll sz(priority_queue, greater > &que) {return (ll)que.size(); } ll sz(string &s) {return (ll)s.size(); } template void chmin(T &a, T b) { if(a > b) a = b; } template void chmax(T &a, T b) { if(a < b) a = b; } // __int128_t gcd(__int128_t a, __int128_t b){ return ((!b) ? a : gcd(b,a%b)); } ll gcd(ll a,ll b){ return ((!b) ?a :gcd(b, a%b)); } ll lcm(ll a,ll b){ return a / gcd(a,b) * b; } ll dx[4] = {0,-1,0,1},dy[4] = {-1,0,1,0}; // ll dx[8] = {0,-1,-1,-1,0,1,1,1},dy[8] = {-1,-1,0,1,1,1,0,-1}; inline bool isinside(ll i,ll n){ return (i < n && i >= 0); } struct range_set { set> st; range_set(){ st.emplace(-(1ll << 61), -(1ll << 61)); st.emplace((1ll << 61), (1ll << 61)); } void insert(ll x){ insert(x,x+1); } ll insert(ll l, ll r){ // [l,r) assert(l < r); auto it = st.lower_bound(make_pair(l,r)); it--; if(it->first <= l && l <= it->second){ l = min(l, it->first); r = max(r, it->second); st.erase(it); } it = st.lower_bound(make_pair(l,r)); while(l <= it->first && it->first <= r){ r = max(r, it->second); it = st.erase(it); } st.emplace(l,r); return r-l; } ll count(ll x){ auto it = st.lower_bound(make_pair(x+1,x+1)); it--; return (it->first <= x && x < it->second); } void erase(ll x){ erase(x, x+1); } void erase(ll l, ll r){ // [l,r) assert(l < r); ll x = l, y = r; auto it = st.lower_bound(make_pair(l,r)); it--; if(it->first <= l && l <= it->second){ l = min(l, it->first); r = max(r, it->second); st.erase(it); } it = st.lower_bound(make_pair(l,r)); while(l <= it->first && it->first <= r){ r = max(r, it->second); it = st.erase(it); } if(l < x) st.emplace(l,x); if(y < r) st.emplace(y,r); } ll mex(){ auto it = st.lower_bound(make_pair(1,1)); it--; return (it->first <= 0 && 0 < it->second ? it->second : 0ll ); } }; int main(){ ll d,q; cin >> d >> q; ll ans = 0; range_set rs; rep(i,0,q){ ll a,b; cin >> a >> b; chmax(ans, rs.insert(a,b+1)); cout << ans << endl; } }