답안 #755225

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
755225 2023-06-09T15:32:10 Z farica Balloons (CEOI11_bal) C++14
100 / 100
624 ms 8656 KB
#include <bits/stdc++.h>
#define ll long long

using namespace std;

typedef vector<int> vi;
typedef pair<int,int> pi;

const int INF = 1e9;
const int MX = 5e5 + 23;
const int MOD = 1e9+7;
const int MAX_N = 1e6;
const int MAX_N2 = 1e5;
const int TWO_MOD_INV = 500000004;
const int M = 998244353;

bool intersect(int x1, int r1, int x2, int r2) {
    if(sqrt((x1-x2)*(x1-x2)+(r1-r2)*(r1-r2))<=(r1+r2)) return 1;
    return 0;
}

void solve() {
    int n;
    cin >> n;
    double r[n], x[n];
    stack<int>s;
    for(int i=0; i<n; ++i) {
        cin >> x[i] >> r[i];
        if(!i) {
            s.push(i);
            cout << fixed << setprecision(3) << r[i] << endl;
            continue;
        }
        while(!s.empty()) {
            int cur=s.top();
            r[i]=min(r[i],((x[i]-x[cur])*(x[i]-x[cur]))/(4*r[cur]));
            if(r[i]>=r[cur]) {
                s.pop();
                continue;
            } else break;
        }
        cout << fixed << setprecision(3) << r[i] << endl;
        s.push(i);
    }
}

signed main()
{

    //freopen("mootube.in","r",stdin);
    //freopen("mootube.out","w",stdout);

    int t=1;
    while(t--) solve();

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB 10 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB 2 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 212 KB 505 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 9 ms 344 KB 2000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 62 ms 692 KB 20000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 144 ms 1404 KB 50000 numbers
2 Correct 169 ms 2280 KB 49912 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 354 ms 2632 KB 100000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 396 ms 3124 KB 115362 numbers
2 Correct 376 ms 5164 KB 119971 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 454 ms 4068 KB 154271 numbers
2 Correct 624 ms 8656 KB 200000 numbers
# 결과 실행 시간 메모리 Grader output
1 Correct 590 ms 4968 KB 200000 numbers
2 Correct 585 ms 8484 KB 199945 numbers