#include using namespace std; using ll = long long; #define rep(i,a) for(int i = 0; i < (a); ++i) template bool chmax(T &a,T b){if(a bool chmin(T &a,T b){if(a>b){a=b; return true;} return false;} int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,x; cin >> n >> x; vector a(n),b(n); for(int i=0;i> a[i] >> b[i]; for(int i=1;i<=x;++i){ int res=0; for(int j=0;j