Submission #1070667

# Submission time Handle Problem Language Result Execution time Memory
1070667 2024-08-22T16:41:28 Z steveonalex Balloons (CEOI11_bal) C++17
70 / 100
2000 ms 7764 KB
#include <bits/stdc++.h>
 
using namespace std;
 
typedef long long ll;
typedef unsigned long long ull;
 
#define MASK(i) (1LL << (i))
#define GETBIT(mask, i) (((mask) >> (i)) & 1)
#define ALL(v) (v).begin(), (v).end()
#define block_of_code if(true)
 
ll max(ll a, ll b){return (a > b) ? a : b;}
ll min(ll a, ll b){return (a < b) ? a : b;}
ll gcd(ll a, ll b){return __gcd(a, b);}
ll lcm(ll a, ll b){return a / gcd(a, b) * b;}
 
ll LASTBIT(ll mask){return (mask) & (-mask);}
int pop_cnt(ll mask){return __builtin_popcountll(mask);}
int ctz(ull mask){return __builtin_ctzll(mask);}
int logOf(ull mask){return 63 - __builtin_clzll(mask);}
 
mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
ll rngesus(ll l, ll r){return l + (ull) rng() % (r - l + 1);}
double rngesus_d(double l, double r){
    double cur = rngesus(0, MASK(60) - 1);
    cur /= MASK(60) - 1;
    return l + cur * (r - l);
}
 
template <class T1, class T2>
    bool maximize(T1 &a, T2 b){
        if (a < b) {a = b; return true;}
        return false;
    }
 
template <class T1, class T2>
    bool minimize(T1 &a, T2 b){
        if (a > b) {a = b; return true;}
        return false;
    }
 
template <class T>
    void printArr(T container, string separator = " ", string finish = "\n", ostream &out = cout){
        for(auto item: container) out << item << separator;
        out << finish;
    }
 
template <class T>
    void remove_dup(vector<T> &a){
        sort(ALL(a));
        a.resize(unique(ALL(a)) - a.begin());
    }
 
pair<double, double> god_point = {1e9, 1e9};
 
double sqr(double x){return x * x;}
double distance(pair<double, double> a, pair<double, double> b){
    return sqrt(sqr(a.first - b.first) + sqr(a.second - b.second));
}
 
int main(void){
    ios::sync_with_stdio(0);cin.tie(0); cout.tie(0);
    clock_t start = clock();
 
    int n; cin >> n;
    vector<int> x(n), radius(n);
    for(int i = 0; i<n; ++i) cin >> x[i] >> radius[i]; 
 
    vector<double> ans(n);
    cout << fixed << setprecision(3);
 
    vector<int> st;
    for(int i = 0; i<n; ++i){
        ans[i] = radius[i];
        for(int j: st){
            double cur = sqr(x[i] - x[j]) / ans[j] / 4;
            minimize(ans[i], cur);
        }
 
        while(st.size()){
            int k = st.back();
            pair<double, double> p = {x[i], ans[i]};
            pair<double, double> prev = {x[k], ans[k]};
            if (prev.second < p.second) st.pop_back();
            // if (distance(god_point, prev) - ans[k] > distance(god_point, p) - ans[i]) st.pop_back();
            else break; 
        }
        st.push_back(i);
    }
 
    printArr(ans, "\n");
 
    cerr << "Time elapsed: " << clock() - start << " ms\n";
    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB 10 numbers
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB 2 numbers
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB 505 numbers
# Verdict Execution time Memory Grader output
1 Correct 2 ms 348 KB 2000 numbers
# Verdict Execution time Memory Grader output
1 Correct 16 ms 956 KB 20000 numbers
# Verdict Execution time Memory Grader output
1 Correct 313 ms 2064 KB 50000 numbers
2 Correct 1093 ms 2028 KB 49912 numbers
# Verdict Execution time Memory Grader output
1 Correct 462 ms 3668 KB 100000 numbers
# Verdict Execution time Memory Grader output
1 Correct 671 ms 4108 KB 115362 numbers
2 Execution timed out 2031 ms 4944 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 736 ms 5488 KB 154271 numbers
2 Execution timed out 2040 ms 7764 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 293 ms 6688 KB 200000 numbers
2 Execution timed out 2036 ms 7760 KB Time limit exceeded
3 Halted 0 ms 0 KB -