# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
501599 | dxz05 | Hedgehog Daniyar and Algorithms (IZhO19_sortbooks) | C++14 | 3075 ms | 223772 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.
#pragma GCC optimize("Ofast,O2,O3,unroll-loops")
#pragma GCC target("avx2")
#include <bits/stdc++.h>
using namespace std;
#define SZ(s) ((int)s.size())
#define all(x) (x).begin(), (x).end()
#define lla(x) (x).rbegin(), (x).rend()
#define MP make_pair
inline void merge(vector<int> &v, const vector<int> &a, const vector<int> &b){
int n = a.size(), m = b.size();
int i = 0, j = 0;
while (i < n || j < m){
if (i < n && (j == m || a[i] < b[j])) v.push_back(a[i++]); else
v.push_back(b[j++]);
}
}
#define tree qrisdfni
struct node{
int ans = 0;
int mx = -1;
vector<int> vec;
node(){};
} tree[2500000];
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |