# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
485127 |
2021-11-06T09:54:25 Z |
hammer23 |
Balloons (CEOI11_bal) |
C++14 |
|
403 ms |
11580 KB |
#include <bits/stdc++.h>
using namespace std;
/******* All Required define Pre-Processors and typedef Constants *******/
typedef pair<int,int> pii;
#define fastIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define sz(x) (int)(x).size()
#define all(x) x.begin(),x.end()
#define sor(x) sort(all(x))
#define rsz resize
#define ins insert
#define ft front()
#define bk back()
#define pb push_back
#define eb emplace_back
#define pf push_front
#define ll long long
#define numBit(x) __builtin_popcount(x)
#define lb lower_bound
#define ub upper_bound
#define ar array
#define endl '\n'
#define fi first
#define se second
const int inf = 1e9+1;
const int maxN = 2e5 + 1;
const int MOD = 1e9 + 7;
using namespace std;
ll powmod(ll a, ll b, ll p){
a %= p;
if (a == 0) return 0;
ll product = 1;
while(b > 0){
if (b&1){
product *= a;
product %= p;
--b;
}
a *= a;
a %= p;
b /= 2;
}
return product;
}
ll inv(ll a, ll p){
return powmod(a, p-2, p);
}
ll DIVMOD(ll a, ll b, ll p){
// A*(B^(MOD-2))%MOD
return a*inv(b,p)%p;
}
void file(const string FILE = "bongbong") {
//freopen((FILE + ".INP").c_str(), "r", stdin);
//freopen((FILE + ".OUT").c_str(), "w", stdout);
}
int n;
int x[maxN];
double r[maxN];
void solve(){
stack<int> st;
cin>>n;
for(int i=0;i<n;i++){
cin>>x[i]>>r[i];
}
for(int i=0;i<n;i++){
while(!st.empty()){
int j=st.top();
r[i]=min(r[i],((x[i]-x[j])*(x[i]-x[j]))/(4*r[j]));
if(r[i]>=r[j]) break;
else st.pop();
}
st.push(i);
//cout<<ans<<setprecision(3)<<endl;
printf("%.3f \n", r[i]);
}
}
int main()
{
//file();
fastIO;
int t=1;
//cin>>t;
while(t--)
solve();
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
332 KB |
5th numbers differ - expected: '17.1630000000', found: '99.0000000000', error = '81.8370000000' |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
2nd numbers differ - expected: '252735385.4379999936', found: '0.9330000000', error = '252735384.5049999952' |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
332 KB |
3rd numbers differ - expected: '0.0420000000', found: '3.0000000000', error = '2.9580000000' |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
332 KB |
114th numbers differ - expected: '39.0180000000', found: '56.0000000000', error = '16.9820000000' |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
22 ms |
972 KB |
196th numbers differ - expected: '100.7250000000', found: '111.0000000000', error = '10.2750000000' |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
52 ms |
1972 KB |
5th numbers differ - expected: '15395.0000000000', found: '-8157.6100000000', error = '23552.6100000000' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
279 ms |
7268 KB |
7236th numbers differ - expected: '0.0070000000', found: '7.0000000000', error = '6.9930000000' |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
403 ms |
11580 KB |
4645th numbers differ - expected: '0.0260000000', found: '8.0000000000', error = '7.9740000000' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
213 ms |
7312 KB |
1730th numbers differ - expected: '5.6890000000', found: '6.8060000000', error = '1.1170000000' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
153 ms |
5956 KB |
2716th numbers differ - expected: '22.1690000000', found: '43.0000000000', error = '20.8310000000' |
2 |
Halted |
0 ms |
0 KB |
- |