Submission #1101891

# Submission time Handle Problem Language Result Execution time Memory
1101891 2024-10-17T06:57:19 Z InvMOD Balloons (CEOI11_bal) C++14
20 / 100
165 ms 14164 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 ll INF = 1e18;

ll square(int x){
    return (1ll * 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();
            int pre_dist = calc_dist(x[st.top()], radius[st.top()], x[i], r[i]);
            st.pop();

            while(!st.empty()){
                if(calc_dist(x[st.top()], radius[st.top()], x[i], r[i]) <= pre_dist){
                    pre_dist = calc_dist(x[st.top()], radius[st.top()], x[i], r[i]);
                    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 4436 KB 10 numbers
# Verdict Execution time Memory Grader output
1 Correct 1 ms 4436 KB 2 numbers
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4436 KB 12th numbers differ - expected: '5.1130000000', found: '5.3100000000', error = '0.1970000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4436 KB 114th numbers differ - expected: '39.0180000000', found: '56.0000000000', error = '16.9820000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 16 ms 9344 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 42 ms 9804 KB 14160th numbers differ - expected: '0.3510000000', found: '0.7220000000', error = '0.3710000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 85 ms 11080 KB 7287th numbers differ - expected: '0.2670000000', found: '0.9590000000', error = '0.6920000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 105 ms 11340 KB 4652nd numbers differ - expected: '0.4350000000', found: '0.5930000000', error = '0.1580000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 112 ms 12620 KB 1749th numbers differ - expected: '1.2100000000', found: '1.9830000000', error = '0.7730000000'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 165 ms 14164 KB 2723rd numbers differ - expected: '859.0470000000', found: '862.0000000000', error = '2.9530000000'
2 Halted 0 ms 0 KB -