# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
366593 | parsabahrami | Pinball (JOI14_pinball) | C++17 | 452 ms | 25964 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.
// Call my Name and Save me from The Dark
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<int, int> pii;
#define SZ(x) (int) x.size()
#define F first
#define S second
#define lc id << 1
#define rc lc | 1
const int N = 3e5 + 10;
ll seg[2][N << 2], ret = 1e18; int n, m, A[N], B[N], C[N], D[N];
vector<int> vec;
void upd(int p, ll x, int t, int id = 1, int l = 0, int r = SZ(vec)) {
if (r - l < 2) {
seg[t][id] = min(seg[t][id], x);
return;
}
int mid = (l + r) >> 1;
if (p < mid) upd(p, x, t, lc, l, mid);
else upd(p, x, t, rc, mid, r);
seg[t][id] = min(seg[t][lc], seg[t][rc]);
}
ll get(int ql, int qr, int t, int id = 1, int l = 0, int r = SZ(vec)) {
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... |