# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
200832 | maruii | Long Distance Coach (JOI17_coach) | C++14 | 314 ms | 246268 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<ll, ll>;
#define ff first
#define ss second
int N, M;
struct CHT {
struct Node {
pii L;
int l, r;
Node() : L(pii(0, 1e18)), l(-1), r(-1) {}
} A[10000005];
ll f(pii L, int x) { return L.ff * x + L.ss; }
int cnt;
void update(int nn, int s, int e, pii L2) {
pii &L1 = A[nn].L;
if (f(L1, s) > f(L2, s)) swap(L1, L2);
if (f(L1, e) <= f(L2, e)) return;
int m = s + e >> 1;
if (f(L1, m) >= f(L2, m)) {
swap(L1, L2);
if (A[nn].l < 0) A[nn].l = ++cnt, A[cnt].L = L1;
update(A[nn].l, s, m, L2);
}
else {
if (A[nn].r < 0) A[nn].r = ++cnt, A[cnt].L = L1;
update(A[nn].r, m + 1, e, L2);
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |