# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
46340 | RezwanArefin01 | Building Bridges (CEOI17_building) | C++17 | 167 ms | 18004 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;
typedef long long ll;
typedef pair<int, int> ii;
const int maxn = 1e5 + 10;
const ll isQuery = -(1ll << 62);
struct line {
ll m, b;
mutable function<const line*()> succ;
bool operator < (const line &l) const {
if(l.b != isQuery) return m < l.m;
const line* s = succ();
if(!s) return 0;
return b - s -> b < (s -> m - m) * l.m;
}
};
struct cht : public multiset<line> {
bool bad(iterator y) {
auto z = next(y);
if(y == begin()) {
if(z == end()) return 0;
return y -> m == z -> m && y -> b <= z -> b;
}
auto x = prev(y);
if(z == end()) return y -> m == x -> m && y -> b <= x -> b;
return 1.0 * (z -> b - x -> b) * (x -> m - y -> m) <= 1.0 * (y -> b - x -> b) * (x -> m - z -> m);
}
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... |