# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
406039 | ansol4328 | Cake 3 (JOI19_cake3) | C++14 | 956 ms | 91868 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>
#define rs resize
using namespace std;
typedef long long ll;
struct A{
int x, y, v;
};
bool cmp1(const A &lhs, const A &rhs){
return lhs.x<rhs.x;
}
bool cmp2(const A &lhs, const A &rhs){
return lhs.v>rhs.v;
}
struct PST{
vector<int> cnt, left, right, root;
vector<ll> sum;
int base, t;
PST(int w, int rt, int up){
int h=1; base=t=1;
while(base<w) base<<=1, h++;
int x=base*2+up*h+5;
cnt.rs(x); sum.rs(x);
left.rs(x); right.rs(x);
root.rs(rt+5);
root[0]=setUp(1,base);
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... |