Submission #1101894

# Submission time Handle Problem Language Result Execution time Memory
1101894 2024-10-17T07:07:34 Z InvMOD Balloons (CEOI11_bal) C++14
20 / 100
135 ms 12104 KB
#include <bits/stdc++.h>
using namespace std;

#define fi first
#define se second
#define gcd __gcd
#define vsz(v) (int) v.size()
#define pb push_back
#define pi pair<int,int>
#define all(v) (v).begin(), (v).end()
#define compact(v) (v).erase(unique(all(v)), (v).end())
#define FOR(i, a, b) for(int i = (a); i <= (b); i++)
///#define int long long

using ll = long long;
using ld = long double;
using ull = unsigned long long;

template<typename T> bool ckmx(T& a, const T& b){if(a < b) return a = b, true; return false;}
template<typename T> bool ckmn(T& a, const T& b){if(a > b) return a = b, true; return false;}

const int N = 2e5+5;
const ll MOD = 1e9+7;
const ld inf = 1e18;

ld square(ld x){
    return (x * x);
}

int n;
ld x[N], r[N];
ld radius[N];

ld calc_dist(ld x1, ld r1, ld x2, ld mxR2){
    ld r2 = square(x1- x2) / (4 * r1);
    return min(r2, mxR2);
}

void solve()
{
    cin >> n;
    for(int i = 1; i <= n; i++){
        cin >> x[i] >> r[i];
    }

    stack<int> st;
    for(int i = 1; i <= n; i++){
        if(!st.empty()){
            int cur_top = st.top();
            ld pre_dist = calc_dist(x[st.top()], radius[st.top()], x[i], inf);
            st.pop();

            while(!st.empty()){
                if(calc_dist(x[st.top()], radius[st.top()], x[i], inf) <= pre_dist){
                    pre_dist = calc_dist(x[st.top()], radius[st.top()], x[i], inf);
                    cur_top = st.top();
                    st.pop();
                }
                else break;
            }
            st.push(cur_top);
        }
        if(st.empty()){
            radius[i] = r[i];
        }
        else{
            radius[i] = calc_dist(x[st.top()], radius[st.top()], x[i], r[i]);
        }
        st.push(i);
    }

    for(int i = 1; i <= n; i++){
        cout << fixed << setprecision(3) << radius[i] <<"\n";
    }
}

signed main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    #define name "InvMOD"
    if(fopen(name".INP", "r")){
        freopen(name".INP","r",stdin);
        freopen(name".OUT","w",stdout);
    }

    int t = 1; //cin >> t;
    while(t--) solve();
    return 0;
}

Compilation message

bal.cpp: In function 'int main()':
bal.cpp:85:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   85 |         freopen(name".INP","r",stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
bal.cpp:86:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   86 |         freopen(name".OUT","w",stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 4432 KB 10 numbers
# Verdict Execution time Memory Grader output
1 Correct 1 ms 4432 KB 2 numbers
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 4432 KB 17th numbers differ - expected: '213.0000000000', found: '234.0000000000', error = '21.0000000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 4444 KB 504th numbers differ - expected: '160.9360000000', found: '163.0000000000', error = '2.0640000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 9040 KB 653rd numbers differ - expected: '96.2810000000', found: '123.0000000000', error = '26.7190000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 35 ms 9296 KB 14174th numbers differ - expected: '0.7720000000', found: '1.3710000000', error = '0.5990000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 70 ms 9920 KB 7447th numbers differ - expected: '0.9750000000', found: '8.0000000000', error = '7.0250000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 80 ms 10324 KB 4793rd numbers differ - expected: '0.9540000000', found: '10.6220000000', error = '9.6680000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 104 ms 11040 KB 1734th numbers differ - expected: '1856.0220000000', found: '1865.0000000000', error = '8.9780000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 135 ms 12104 KB 2735th numbers differ - expected: '1883.4630000000', found: '1899.0000000000', error = '15.5370000000'
2 Halted 0 ms 0 KB -