답안 #481874

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
481874 2021-10-22T04:53:26 Z sberens Mobile (BOI12_mobile) C++17
12 / 100
1000 ms 15972 KB
#pragma GCC optimize ("O3,fast-math,inline")

#include <bits/stdc++.h>

#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template <typename K> using hset = gp_hash_table<K, null_type>;
template <typename K, typename V> using hmap = gp_hash_table<K, V>;


using namespace std;

#define all(x) (x).begin(), (x).end()
#define pb push_back
#define eb emplace_back
#define smax(x, y) (x = max(x, y))
#define smin(x, y) (x = min(x, y))

using ld = long double;
using ll = long long;

template <typename T>
using vv = vector<vector<T>>;

using vi = vector<int>;
using ii = array<int, 2>;
using vii = vector<ii>;
using vvi = vv<int>;

using vll = vector<ll>;
using l2 = array<int, 2>;
using vl2 = vector<l2>;
using vvll = vv<ll>;

template <typename T>
using minq = priority_queue<T, vector<T>, greater<T>>;
template <typename T>
using maxq = priority_queue<T>;

const ll M = 1000000007;

#ifndef REFERENCE_DISCRETE_BINARY_SEARCH_H
#define REFERENCE_DISCRETE_BINARY_SEARCH_H


#include <iostream>
#include <functional>


template<typename IN>
IN discrete_binary_search(function<bool(IN)> predicate, IN low = 0, IN high = numeric_limits<IN>::max()) {
    while (fabs(high - low) > 1e-4) {
        IN middle = low + (high - low) / 2; // todo std::midpoint in cpp 2020
        if (predicate(middle))
            high = middle;
        else low = middle;
    }
    return low;
}

#endif //REFERENCE_DISCRETE_BINARY_SEARCH_H

inline bool a_contains_b(array<ld, 2> a,  array<ld, 2> b) {
    return a[0] <= b[0] && b[1] <= a[1];
}

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    int n, l;
    cin >> n >> l;
    vll x(n), y(n);
    for (int i = 0; i < n; ++i) {
        cin >> x[i] >> y[i];
    }

    cout << fixed << setprecision(4) <<  discrete_binary_search<ld>([&](ld d) -> bool {
        // is there a point with min distance > d
        // equivalently, is every point within distance d

        vector<array<ld, 2>> intervals;
        intervals.reserve(n);
        // add to intervals
        for (int i = 0; i < n; ++i) {
            if (abs(y[i]) > d) continue;
            ld dx = sqrt(d * d - y[i] * y[i]);
            // get rid of nested intervals
            ld s1 = x[i] - dx, e1 = x[i] + dx;
            // can merge in place
            bool intersect = false;
            if (!intervals.empty()) {
                auto & [s2, e2] = intervals.back();
                if (max(s1, s2) <= min(e1, e2)) {
                    smin(s2, s1);
                    smax(e2, e1);
                    intersect = true;
                }
            }
            if (!intersect)
                intervals.pb({s1, e1});
        }

        // check interval spans whole highway
        array<ld, 2> highway{0, (ld) l};
        for (auto interval : intervals) {
            if (a_contains_b(interval, highway)) return true;
        }
        return false;

    }, 0, sqrt(1e18 + 4 * 1e18 + 1e10)) << '\n';

}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 268 KB Output is correct
2 Correct 0 ms 204 KB Output is correct
3 Correct 0 ms 204 KB Output is correct
4 Correct 0 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB Output is correct
2 Correct 0 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 1 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 332 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 332 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 332 KB Output is correct
2 Correct 6 ms 332 KB Output is correct
3 Correct 5 ms 332 KB Output is correct
4 Correct 3 ms 332 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 416 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 80 ms 1524 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 53 ms 1548 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 92 ms 1712 KB Output is correct
2 Correct 96 ms 1616 KB Output is correct
3 Correct 76 ms 1644 KB Output is correct
4 Correct 46 ms 2004 KB Output is correct
5 Incorrect 52 ms 1612 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 105 ms 1900 KB Output is correct
2 Correct 100 ms 1904 KB Output is correct
3 Correct 94 ms 1880 KB Output is correct
4 Incorrect 39 ms 1892 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 105 ms 1880 KB Output is correct
2 Correct 103 ms 1868 KB Output is correct
3 Correct 87 ms 1868 KB Output is correct
4 Incorrect 40 ms 1880 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 495 ms 8140 KB Output is correct
2 Correct 515 ms 8148 KB Output is correct
3 Correct 502 ms 8268 KB Output is correct
4 Incorrect 191 ms 8140 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 517 ms 8252 KB Output is correct
2 Incorrect 466 ms 8636 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 588 ms 9832 KB Output is correct
2 Correct 603 ms 9836 KB Output is correct
3 Correct 602 ms 9804 KB Output is correct
4 Incorrect 226 ms 9676 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 604 ms 9700 KB Output is correct
2 Incorrect 557 ms 10152 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 669 ms 11276 KB Output is correct
2 Correct 694 ms 11324 KB Output is correct
3 Correct 705 ms 11280 KB Output is correct
4 Incorrect 284 ms 11212 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 718 ms 11284 KB Output is correct
2 Incorrect 645 ms 11660 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 763 ms 12840 KB Output is correct
2 Correct 824 ms 12940 KB Output is correct
3 Correct 795 ms 12844 KB Output is correct
4 Incorrect 320 ms 12840 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 822 ms 12840 KB Output is correct
2 Incorrect 722 ms 13100 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 961 ms 15972 KB Output is correct
2 Execution timed out 1022 ms 15968 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1010 ms 15972 KB Time limit exceeded
2 Halted 0 ms 0 KB -