답안 #435271

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
435271 2021-06-23T06:45:22 Z harshith828 Balloons (CEOI11_bal) C++14
20 / 100
184 ms 4160 KB
#include <bits/stdc++.h>
#include <iomanip>
using namespace std;

long double get_min(long double x1,long double x2){
    if(x1 > x2){
        return x2;
    }
    return x1;
}

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    long long int n;
    cin >> n;
    stack<pair<long long int,double>> s;
    long long int x,r;
    vector<double> v;
    for(int i = 0;i < n;i++){
        cin >> x >> r;
        double radius = r;
        while(!s.empty()){
            radius = get_min((((pow((s.top()).first - x,2)))/(4.000*(s.top()).second)),r);
            if(radius > s.top().second){
                s.pop();
            }
            else{
                break;
            }
        }
        // }
        // if(!s.empty()){
        //     radius = (((double)(pow((s.top()).first - x,2)))/(4.000*(s.top()).second));
        // }
        // else{
        //     radius = r;
        // }
        // if(radius > r){
        //     radius = r;
        // }

        v.push_back(radius);
        s.push(make_pair(x,radius));
    }
    for(int i = 0;i < n;i++){
        if(i != n - 1){
            cout << fixed << setprecision(6) << v[i] << "\n";
        }
        else{
            cout << fixed << setprecision(6) << v[i];
        }
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB 10 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB 2 numbers
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB 14th numbers differ - expected: '2.6090000000', found: '7.1408450000', error = '4.5318450000'
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 332 KB 79th numbers differ - expected: '36.0070000000', found: '2766.0000000000', error = '2729.9930000000'
# 결과 실행 시간 메모리 Grader output
1 Incorrect 21 ms 720 KB 137th numbers differ - expected: '67.1010000000', found: '3129.0000000000', error = '3061.8990000000'
# 결과 실행 시간 메모리 Grader output
1 Incorrect 48 ms 1328 KB 250th numbers differ - expected: '15134.0000000000', found: '18307.0000000000', error = '3173.0000000000'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 103 ms 2356 KB 162nd numbers differ - expected: '7765.0000000000', found: '14571.0000000000', error = '6806.0000000000'
# 결과 실행 시간 메모리 Grader output
1 Incorrect 117 ms 2628 KB 510th numbers differ - expected: '4505.0010000000', found: '13465.0000000000', error = '8959.9990000000'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 154 ms 3388 KB 161st numbers differ - expected: '1703.0000000000', found: '4036.0000000000', error = '2333.0000000000'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 184 ms 4160 KB 248th numbers differ - expected: '2694.0020000000', found: '8658.0000000000', error = '5963.9980000000'
2 Halted 0 ms 0 KB -