# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
637606 | stoyan_malinin | Long Distance Coach (JOI17_coach) | C++14 | 2088 ms | 18816 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 <algorithm>
#include <iostream>
#include <vector>
#include <cmath>
#include <set>
using namespace std;
const int MAXN = 2e5;
const int64_t inf = 1e18;
const int64_t MAXX = 1e12;
struct Line
{
int64_t a, b;
Line(){}
Line(int64_t a, int64_t b) : a(a), b(b) {}
int64_t get(int64_t x) const
{
return a*x + b;
}
};
struct LiChaoTree
{
Line line;
int64_t l, r;
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |