답안 #842491

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
842491 2023-09-03T00:43:47 Z NoLove Balloons (CEOI11_bal) C++14
20 / 100
2000 ms 4932 KB
/**
 *    author : Lăng Trọng Đạt
 *    created: 2023-09-02
**/
#include <bits/stdc++.h>
using namespace std;
#ifndef LANG_DAT
#define db(...) ;
#endif // LANG_DAT
#define int int64_t
#define mp make_pair
#define f first
#define s second
#define pb push_back
#define all(v) (v).begin(), (v).end()
using pii = pair<int, int>;

const int INF = 2e9;
const double eps = 1e-4;
const int MAXN = 2e5 + 5;
int x[MAXN], r[MAXN],  id[MAXN]; // f[i]: final radius of balloon i
double f[MAXN];
int n;

inline double dist(double ngang, double doc) {
    return sqrt((double)ngang*ngang + doc*doc);
}

bool vaild(double radius, int pos, int adj) {
    double d =  dist(abs(pos - x[adj]), abs(radius - f[adj]));
    db(f[adj], radius, d, pos, x[adj])
    return f[adj] + radius <= d;
}

bool check(double radius, int pos, int i) {
    bool res = true;
    for (int j = i - 1; j > 0 && res; j--)
        res &= vaild(radius, pos, j);
    return res;
}

int32_t main() {
    cin.tie(0)->sync_with_stdio(0);
    if (fopen("hi.inp", "r")) {
        freopen("hi.inp", "r", stdin);
//        freopen("hi.out", "w", stdout);
    }

    std::cin >> n;
    for (int i = 1; i <= n; i++) {
        std::cin >> x[i] >> r[i];
    }
    for (int i = 1; i <= n; i++) {
        double lo = 0, hi = r[i], res = 0;
        while ((hi - lo) > eps) {
            double mid = (lo + hi) / 2;
            if (check(mid, x[i], i)) {
                res = mid;
                lo = mid + eps;
            } else hi = mid - eps;
        }
        f[i] = res;
        cout << fixed << setprecision(8) << f[i] << "\n";
    }

}

Compilation message

bal.cpp: In function 'int32_t main()':
bal.cpp:45:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   45 |         freopen("hi.inp", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2396 KB 10 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2396 KB 2 numbers
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 2396 KB 345th numbers differ - expected: '215.0530000000', found: '215.0473459900', error = '0.0056540100'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 69 ms 2560 KB 114th numbers differ - expected: '39.0180000000', found: '39.0199978500', error = '0.0019978500'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2048 ms 2992 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2072 ms 3236 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2039 ms 3880 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2032 ms 3832 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2047 ms 4224 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2008 ms 4932 KB Time limit exceeded
2 Halted 0 ms 0 KB -