# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
258975 | Bruteforceman | Treatment Project (JOI20_treatment) | C++11 | 3063 ms | 4088 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>
using namespace std;
const int maxn = 2e5 + 10;
const long long inf = 1e16;
long long d[maxn];
struct data {
int t, l, r, c;
} a[maxn];
int n;
int par[maxn];
int leftAfter(int x, int t) {
if(x == 1) return 1;
return x + t;
}
int rightAfter(int x, int t) {
if(x == n) return n;
return x - t;
}
bool isEdge(data p, data q) {
if(p.t <= q.t) {
return (q.l <= p.r - abs(q.t - p.t));
} else {
return (q.l + abs(p.t - q.t) <= p.r);
}
}
int main() {
int m;
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... |