//#define _GLIBCXX_DEBUG #include #define rep(i, n) for(int i=0; i; using vs = vector; using vi = vector; using vvi = vector; template using PQ = priority_queue; template using PQG = priority_queue, greater >; const int INF = 0xccccccc; const ll LINF = 0xcccccccccccccccLL; template inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true);} template inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true);} template istream &operator>>(istream &is, pair &p) { return is >> p.first >> p.second;} template ostream &operator<<(ostream &os, const pair &p) { return os << p.first << ' ' << p.second;} //head int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m, a, b; cin >> n >> m >> a >> b; vvi G(n+1); rep(i, m) { int l, r; cin >> l >> r; G[l-1].emplace_back(r); G[r].emplace_back(l-1); } vi dist(n+1, INF); queue

q; bitset<100100> bits(0); rep(i, a) { bits.set(i); q.emplace(i, 0); } while(!q.empty()) { auto [now, d] = q.front(); q.pop(); for(int ne:G[now]) { if(bits.test(ne)) continue; if(ne >= b) { cout << d+1 << endl; return 0; } q.emplace(ne, d+1); bits.set(ne); } } cout << "-1\n"; }