# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1083685 | vjudge1 | Mobile (BOI12_mobile) | C++17 | 590 ms | 32404 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <cmath>
#include <iomanip>
using namespace std;
// Function to check if a given radius R can cover the entire highway
bool canCoverAllPoints(const vector<pair<double, double>>& stations, double R, double L) {
double coveredUntil = 0.0;
for (const auto& station : stations) {
double xi = station.first;
double yi = station.second;
if (yi > R) continue; // This base station is too far away to help
// Calculate the maximum x-range this station can cover
double d = sqrt(R * R - yi * yi);
double coverageStart = max(0.0, xi - d);
double coverageEnd = xi + d;
// Extend the coverage
coveredUntil = max(coveredUntil, coverageEnd);
if (coveredUntil >= L) return true; // Covered the entire highway
}
return coveredUntil >= L;
}
int main() {
int N;
double L;
cin >> N >> L;
vector<pair<double, double>> stations(N);
for (int i = 0; i < N; ++i) {
double xi, yi;
cin >> xi >> yi;
stations[i] = {xi, yi};
}
// Binary search for the smallest possible R
double low = 0.0;
double high = 1e9;
double epsilon = 1e-4; // Precision to ensure accuracy within 1e-3
while (high - low > epsilon) {
double mid = (low + high) / 2.0;
if (canCoverAllPoints(stations, mid, L)) {
high = mid; // Try smaller radius
} else {
low = mid; // Increase radius
}
}
cout << fixed << setprecision(6) << high << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |