# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
985569 | ParsaGolestani | 순열 (APIO22_perm) | C++17 | 2 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |