Submission #949709

# Submission time Handle Problem Language Result Execution time Memory
949709 2024-03-19T15:23:04 Z Kavelmydex Mobile (BOI12_mobile) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pi pair<int,int>
#define vi vector<int>
#define rep(i,x,n) for(int i=x; i<n; ++i)
#define For(i,n) rep(i,0,n)
#define endl "\n"
#define sp ' '
#define pb push_back
#define f first
#define s second
#define sz size()
#define all(x) (x).begin(),(x).end()
 
const int N = 4e5+10, OO = 1e18, mod = 1e9, mx = 2e6;
void tr(int a, int b){cout << a << sp << b << endl;}
void cmx(double &a, double b){a = max(a,b);}
void cmn(double &a, double b){a = min(a,b);}

int n,l; 
bool in(int x){return 0<=x && x<=l;}
int32_t main() {
    ios::sync_with_stdio(0); cin.tie(0);
    cin >> n >> l;
    vector <pi> in,v;
    For(i,n){
        int x,y; cin >> x >> y;
        y = abs(y);
        in.pb({x,y});
    }   
    For(i,n){
        int j = i, y = in[i].s;
        while(j < n && in[i].f == in[j].f) y = min(y,v[j].s), j++;
        v.pb({in[i].f, y});
        i = j-1;
    }   in.clear();
    double ans = 0, mn = OO, mn2 = OO;
    For(i,n){
        cmn(mn, sqrt(v[i].f*v[i].f + v[i].s*v[i].s));
        int x = abs(v[i].f-l);
        cmn(mn2, sqrt(x * x + v[i].s * v[i].s));
    }
    cmx(ans, max(mn2,mn));
    vector <pi> u,q;
    For(i,n){
        bool ok = 0;
        for(auto [x,y]: u){
            int X = abs(x-v[i].f);
            if(X * X + y * y <= v[i].s * v[i].s){
                ok = 1;
            }
        }
        if(ok){
            u.pb(v[i]);
        } else {
            u.clear();
            u.pb(v[i]);
            if(i){
                double cost = OO; pi p;
                for(auto [x,y]: q){
                    double X = abs(x-v[i].f);
                    double d = ( X*X + v[i].s * v[i].s - y * y ) / ( 2*X ), val = sqrt(d * d + y * y);
                    if(val < cost){
                        cost = val;
                        p = {x,y};
                    }
                } q.clear();
                if(in(p.f) || in(v[i].f)) 
                    cmx(ans, cost); 
            }
        }
        q.pb(v[i]);
    }
    cout << fixed << setprecision(4) << ans << endl;
    return 0;
}

Compilation message

mobile.cpp: In function 'int32_t main()':
mobile.cpp:69:26: error: no match for call to '(std::vector<std::pair<long long int, long long int> >) (long long int&)'
   69 |                 if(in(p.f) || in(v[i].f))
      |                          ^
mobile.cpp:69:40: error: no match for call to '(std::vector<std::pair<long long int, long long int> >) (long long int&)'
   69 |                 if(in(p.f) || in(v[i].f))
      |                                        ^