# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
985569 | ParsaGolestani | Permutation (APIO22_perm) | C++17 | 2 ms | 348 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>
using namespace std;
typedef long long ll;
const int N = 2'000'0000;
vector<int> makeOk(deque<int> dq) {
vector<int> vec1, vec2;
for (int i = 0; i < dq.size(); i++)
vec1.push_back(dq[i]);
sort(vec1.begin(), vec1.end());
for (int i = 0; i < dq.size(); i++)
vec2.push_back(lower_bound(vec1.begin(), vec1.end(), dq[i]) - vec1.begin());
return vec2;
}
string to3(ll k) {
string res = "";
while (k) {
res += ('0' + k % 3);
k /= 3;
}
reverse(res.begin(), res.end());
return res;
}
vector<int> construct_permutation(ll k) {
deque<int> dq;
int bit = 63 - __builtin_clzll(k);
/*if ((k & (1ll << (bit - 1)))) {
dq.push_back(1);
dq.push_back(0);
}
else
dq.push_back(0);
int pnt = 0;
for (int j = bit - 2; j >= 0; j--) {
if (j >= 1 && (k & (1ll << j)) && (k & (1ll << (j - 1)))) {
dq.push_front(pnt - 1);
dq.push_back(pnt - 2);
dq.push_front(pnt - 3);
pnt -= 3;
j--;
}
else {
dq.push_front(--pnt);
if ((k & (1ll << j)))
dq.push_back(--pnt);
}
}*/
int pnt = 0, idx;
string s = to3(k);
if (s[0] == '1') {
if (s[1] == '0') {
dq.push_front(1);
dq.push_front(2);
}
else if (s[1] == '1') {
dq.push_front(1);
dq.push_back(2);
}
else {
dq.push_front(1);
dq.push_front(3);
dq.push_front(2);
}
idx = 2;
}
else {
dq.push_front(1);
idx = 1;
}
for (int i = idx; i < s.size(); i++) {
if (s[i] == '0') {
dq.push_front(pnt - 2);
dq.push_front(pnt - 1);
pnt -= 2;
}
else if (s[i] == '1') {
dq.push_front(pnt - 2);
dq.push_front(pnt - 1);
dq.push_back(pnt - 3);
pnt -= 3;
}
else {
dq.push_front(pnt - 3);
dq.push_front(pnt - 1);
dq.push_back(pnt - 2);
pnt -= 3;
}
}
return makeOk(dq);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |