제출 #714923

#제출 시각아이디문제언어결과실행 시간메모리
714923MilosMilutinovicBalloons (CEOI11_bal)C++14
20 / 100
2068 ms3456 KiB
#include <bits/stdc++.h>

using i64 = long long;

const double eps = 1E-8;

double solve(double x1, double r, double x2) {
    double low = 0, high = 1.01E9, R = 0;
    while (high - low >= eps) {
        double mid = (low + high) / 2;
        double dist = std::sqrt((long double) (x1 - x2) * (x1 - x2) + (long double) (r - mid) * (r - mid));
        if (dist >= r + mid) {
            R = mid;
            low = mid;
        } else {
            high = mid;
        }
    }
    return R;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int n;
    std::cin >> n;

    std::vector<double> x(n), r(n);
    for (int i = 0; i < n; i++) {
        std::cin >> x[i] >> r[i];
    }

    std::vector<int> stk;
    for (int i = 0; i < n; i++) {
        while (!stk.empty()) {
            int j = stk.back();
            double nr = solve(x[j], r[j], x[i]);
            r[i] = std::min(r[i], nr);
            if (r[i] >= r[j]) {
                stk.pop_back();
            } else {
                break;
            }
        }
        stk.push_back(i);
        std::cout << std::fixed << std::setprecision(5) << r[i] << "\n";
    }

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...