# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
367863 | valerikk | 수열 (APIO14_sequence) | C++17 | 1599 ms | 91440 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long double ld;
typedef long long ll;
const ll INF = (ll)1.1e18;
struct ConvexHull {
struct Line {
ll a, b;
int id;
ll get(ll x) {
return a * x + b;
}
Line() {}
Line(ll a, ll b, int id) : a(a), b(b), id(id) {}
};
ld inter(Line l1, Line l2) {
return (ld)(l1.b - l2.b) / (l2.a - l1.a);
}
vector<Line> ch;
vector<ld> interX;
int pos;
bool bad(Line l) {
if ((int)ch.size() <= 1) return false;
return inter(l, ch[(int)ch.size() - 2]) <= interX.back();
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |