Submission #435240

# Submission time Handle Problem Language Result Execution time Memory
435240 2021-06-23T06:01:01 Z harshith828 Balloons (CEOI11_bal) C++14
0 / 100
365 ms 6116 KB
#include <bits/stdc++.h>
#include <iomanip>
using namespace std;

int main(){
    
    int n;
    cin >> n;
    stack<pair<int,int>> s;
    int x,r;
    vector<long double> v;
    for(int i = 0;i < n;i++){
        cin >> x >> r;
        long double radius;
        while(!s.empty() and (s.top()).first + (s.top()).second >= x - r and (x - ((s.top()).first + (s.top()).second))>(s.top()).second){
            s.pop();
        }
        if(!s.empty() and (s.top()).first + (s.top()).second >= x - r){
            radius = ((long double)(((s.top()).first - x)*((s.top()).first - x)))/(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++){
        cout << fixed << setprecision(3);
        if(i != n - 1){
            cout << v[i] << "\n";
        }
        else{
            cout << v[i];
        }
    }
    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB 8th numbers differ - expected: '8.7410000000', found: '9.0910000000', error = '0.3500000000'
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB 2nd numbers differ - expected: '252735385.4379999936', found: '1000000000.0000000000', error = '747264614.5620000362'
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB 3rd numbers differ - expected: '0.0420000000', found: '3.0000000000', error = '2.9580000000'
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 332 KB 3rd numbers differ - expected: '121.0000000000', found: '121.0020000000', error = '0.0020000000'
# Verdict Execution time Memory Grader output
1 Incorrect 28 ms 840 KB 44th numbers differ - expected: '165.0000000000', found: '165.0020000000', error = '0.0020000000'
# Verdict Execution time Memory Grader output
1 Incorrect 97 ms 1796 KB 250th numbers differ - expected: '15134.0000000000', found: '18307.0000000000', error = '3173.0000000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 158 ms 3316 KB 162nd numbers differ - expected: '7765.0000000000', found: '14571.0000000000', error = '6806.0000000000'
# Verdict Execution time Memory Grader output
1 Incorrect 192 ms 3960 KB 510th numbers differ - expected: '4505.0010000000', found: '13465.0000000000', error = '8959.9990000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 246 ms 5280 KB 161st numbers differ - expected: '1703.0000000000', found: '4036.0000000000', error = '2333.0000000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 365 ms 6116 KB 248th numbers differ - expected: '2694.0020000000', found: '8658.0000000000', error = '5963.9980000000'
2 Halted 0 ms 0 KB -