# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
653862 | Baytoro | Balloons (CEOI11_bal) | C++17 | 139 ms | 8520 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define Baytoro_MayrambekovOrz void solve()
#define ios ios::sync_with_stdio(false); cin.tie(NULL);
#define pb push_back
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define fr first
#define sc second
#define int long long
#define endl '\n'
void fopn(string name){
freopen((name+".in").c_str(),"r",stdin);
freopen((name+".out").c_str(),"w",stdout);
}
const int INF=1e18,mod=2022;
int binpow(int a,int n){
if(n==0)
return 1;
if(n%2==1)
return (binpow(a, n-1)*a)%mod;
else{
int b=binpow(a, n/2)%mod;
return (b*b)%mod;
}
}
int n,m;
Baytoro_MayrambekovOrz{
int n;
cin>>n;
vector<int> a(n),r(n);
for(int i=0;i<n;i++)
cin>>a[i]>>r[i];
stack<pair<int,double>> st;
for(int i=0;i<n;i++){
double res=r[i];
while(!st.empty()){
int tmp=(a[i]-st.top().first)*(a[i]-st.top().first);
double t=tmp;
double rr=t/(4.0*st.top().sc);
res=min(res,rr);
if(res>=st.top().sc)
st.pop();
else
break;
}
cout<<fixed<<setprecision(3)<<res<<endl;
st.push({a[i],res});
}
}
main(){
//fopn("timeline");
ios;
int T=1;
//cin>>T;
while(T--){
solve();
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |