# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
404668 | nikatamliani | Harbingers (CEOI09_harbingers) | C++14 | 196 ms | 33624 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
using namespace std;
const ll N = 1e5+10, oo = 4e18;
vector<pair<int, int>> edges[N];
int p[N], s[N], v[N], sum[N];
ll dp[N], n;
struct line {
int k;
ll b;
line(int _k, ll _b) : k(_k), b(_b) {}
line() : line(0, 4e18) {}
ll f(int x) {
return (ll)k*x + b;
}
};
struct node {
node *L, *R;
line l;
node() : L(NULL), R(NULL), l() {}
} *root;
pair<line*, line> ops[500005];
int timer = 0;
void add_line(int l, int r, line ln, node *&t) {
if(t == NULL) t = new node();
int m = (0LL+l+r)/2;
bool lft = t->l.f(l) < ln.f(l);
bool mid = t->l.f(m) < ln.f(m);
if(lft == mid && !lft) {
line save = t->l;
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |