Submission #578074

# Submission time Handle Problem Language Result Execution time Memory
578074 2022-06-16T01:12:32 Z Soul234 Balloons (CEOI11_bal) C++14
100 / 100
145 ms 10148 KB
#include<bits/stdc++.h>
using namespace std;

void DBG() { cerr << "]\n"; }
template<class H, class... T> void DBG(H h, T... t) {
    cerr << h; if(sizeof...(t)) cerr << ", ";
    DBG(t...);
}
#ifdef LOCAL
#define dbg(...) cerr << "[" << #__VA_ARGS__ << "]: [", DBG(__VA_ARGS__)
#else
#define dbg(...) 0
#endif // LOCAL

#define FOR(i,a,b) for(int i = (a) ; i<(b) ; i++)
#define F0R(i,a) FOR(i,0,a)
#define ROF(i,a,b) for(int i = (b)-1 ; i>=(a) ; i--)
#define R0F(i,a) ROF(i,0,a)
#define each(e,a) for(auto &e : (a))
#define sz(v) (int)(v).size()
#define all(v) (v).begin(),(v).end()
#define rall(v) (v).rbegin(),(v).rend()
#define pb push_back
#define tcT template<class T
#define nl "\n"

using ll = long long;
using vi = vector<int>;
using pi = pair<int,int>;
using str = string;
tcT> using V = vector<T>;
tcT> using pqg = priority_queue<T,vector<T>,greater<T>>;

void setIO(string NAME = "") {
    cin.tie(0)->sync_with_stdio(0);
    cout << fixed << setprecision(3);
    if(sz(NAME)) {
        freopen((NAME + ".inp").c_str(),"r",stdin);
        freopen((NAME + ".out").c_str(),"w",stdout);
    }
}

tcT> bool ckmin(T&a, const T&b) {
    return b < a ? a=b,1 : 0; }
tcT> bool ckmax(T&a, const T&b) {
    return b > a ? a=b,1 : 0; }

const int MOD = 1e9 + 7;

const int MX = 2e5+5;
int N, x[MX], r[MX];
long double ans[MX];



void solve() {
    cin>>N;
    stack<int> st;
    FOR(i,1,N+1) {
        cin>>x[i]>>r[i];
        ans[i] = r[i];
        while(sz(st)) {
            ckmin(ans[i], (long double)(x[i] - x[st.top()])*(x[i]-x[st.top()])/(4*ans[st.top()]));
            if(ans[i] >= ans[st.top()]) st.pop();
            else break;
        }
        st.push(i);
    }
    FOR(i,1,N+1) cout << ans[i] << nl;
}

int main() {
    setIO();

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

    return 0;
}

Compilation message

bal.cpp: In function 'void setIO(std::string)':
bal.cpp:38:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   38 |         freopen((NAME + ".inp").c_str(),"r",stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bal.cpp:39:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   39 |         freopen((NAME + ".out").c_str(),"w",stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB 10 numbers
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB 2 numbers
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB 505 numbers
# Verdict Execution time Memory Grader output
1 Correct 2 ms 340 KB 2000 numbers
# Verdict Execution time Memory Grader output
1 Correct 16 ms 852 KB 20000 numbers
# Verdict Execution time Memory Grader output
1 Correct 50 ms 1868 KB 50000 numbers
2 Correct 35 ms 2760 KB 49912 numbers
# Verdict Execution time Memory Grader output
1 Correct 75 ms 3472 KB 100000 numbers
# Verdict Execution time Memory Grader output
1 Correct 116 ms 4056 KB 115362 numbers
2 Correct 79 ms 6196 KB 119971 numbers
# Verdict Execution time Memory Grader output
1 Correct 119 ms 5264 KB 154271 numbers
2 Correct 123 ms 10148 KB 200000 numbers
# Verdict Execution time Memory Grader output
1 Correct 145 ms 6476 KB 200000 numbers
2 Correct 138 ms 10116 KB 199945 numbers