# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
798115 | IvanJ | Abracadabra (CEOI22_abracadabra) | C++17 | 3051 ms | 31348 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 pb push_back
#define x first
#define y second
#define all(a) (a).begin(), (a).end()
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
const int maxn = 2e5 + 5, maxq = 1e6 + 5;
int n, q;
int p[maxn];
int ans[maxq];
vector<ii> qs[maxn];
vector<int> get(vector<int> L, vector<int> R) {
int i = 0, j = 0;
vector<int> ret;
while(i < (n / 2) || j < (n / 2)) {
if(i == n / 2) ret.pb(R[j++]);
else if(j == n / 2) ret.pb(L[i++]);
else {
if(L[i] < R[j])
ret.pb(L[i++]);
else ret.pb(R[j++]);
}
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... |