# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1117301 | 0x34c | Abracadabra (CEOI22_abracadabra) | C++17 | 498 ms | 78656 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 ll long long
#define pii pair<int, int>
#define endl '\n'
#define int ll
using namespace std;
struct block
{
int head, l, r;
bool operator<(const block &y) const
{
return head < y.head;
}
};
struct qry
{
int t, i, idx;
};
struct segtree
{
private:
vector<int> tree;
int n;
void update(int idx, int val, int v, int tl, int tr)
# | 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... |