#include<bits/stdc++.h> using namespace std; typedef long long ll; int a[20005],n,m,fs; struct Thing{ int l,r; }ans[1000005]; vector<Thing> v; void Clear(){ for(int i=1;i<=n+1;i++)a[i]=0; } void Solve(){ cin>>n>>m,fs=0; for(int i=1;i<=n;i++){ ll x; cin>>x...