# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
52829 | polyfish | Deda (COCI17_deda) | C++14 | 129 ms | 18388 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.
//I love armpit fetish
#include <bits/stdc++.h>
using namespace std;
#define debug(x) cerr << #x << " = " << x << '\n';
#define BP() cerr << "OK!\n";
#define PR(A, n) cerr << #A << " = "; for (int _=1; _<=n; ++_) cerr << A[_] << ' '; cerr << '\n';
#define PR0(A, n) cerr << #A << " = "; for (int _=0; _<n; ++_) cerr << A[_] << ' '; cerr << '\n';
#define FILE_NAME "data"
const int INF = 1e9;
struct segmentTree {
vector<int> st;
int n;
segmentTree(int _n) {
n = _n;
st.resize(4*n, INF);
}
void upd(int pos, int val, int l, int r, int id) {
if (pos<l || pos>r)
return;
if (l==pos && pos==r) {
st[id] = val;
return;
}
int mid = (l + r) / 2;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |