fork(1) download
  1. #include <bits/stdc++.h>
  2. #define ll long long int
  3. #define ld double
  4. #define M 100010
  5. using namespace std;
  6. ll n;ld ans=99999999999999999LL,k;
  7. pair<ld,ld> line[M];
  8. ld f(ld t) {
  9. ld tmp=0,tmp2=99999999999999999LL;
  10. for (int i=0;i<n;i++) {
  11. tmp=max(tmp,line[i].first*t+line[i].second);
  12. tmp2=min(tmp2,line[i].first*t+line[i].second);
  13. }
  14. return (tmp-tmp2);
  15. }
  16. int main() {
  17. ios::sync_with_stdio(false);cin.tie(0);
  18. cin>>n>>k;
  19. for (int i=0;i<n;i++) cin>>line[i].first>>line[i].second;
  20. ld L=0.0,R=k,lp=100;
  21. while (lp--) {
  22. ld mid1 = L+(R-L)/3;
  23. ld mid2 = R-(R-L)/3;
  24. ld q=f(mid1),w=f(mid2);
  25. ans=min(ans,min(q,w));
  26. if (q<w) R=mid2; else L=mid1;
  27. }
  28. cout<<fixed<<setprecision(6)<<ans<<endl;
  29. }
Success #stdin #stdout 0s 4836KB
stdin
Standard input is empty
stdout
-100000000000000000.000000