# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
993593 | abczz | 순열 (APIO22_perm) | C++17 | 0 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include <iostream>
#define ll long long
using namespace std;
vector <int> base2(ll k) {
vector <int> V;
ll mxbit = 0, cnt = 0;
for (int i=59; i>=0; --i) {
if (k & (1LL<<i)) {
mxbit = i;
break;
}
}
for (int j=0; j<mxbit; ++j) {
if (k & (1LL<<j)) V.push_back(-1);
V.push_back(++cnt);
}
ll x = V.size();
for (auto &u : V) {
if (u == -1) u = x--;
--u;
}
return V;
}
vector <int> base3(ll k) {
vector <int> V, U;
ll cnt = 0;
ll tmp = k/3;
while (tmp) {
U.push_back(tmp % 3);
tmp /= 3;
}
for (int i=0; i<U.size(); ++i) {
if (U[i] == 1) V.push_back(-1);
V.push_back(cnt+2);
if (U[i] == 2) V.push_back(-1);
V.push_back(cnt+1);
cnt += 2;
}
if (!U.empty() && U.back() == 2) V.push_back(++cnt);
ll x = V.size();
for (auto &u : V) {
if (u == -1) u = x--;
--u;
}
return V;
}
std::vector<int> construct_permutation(long long k)
{
auto b2 = base2(k);
auto b3 = base3(k);
if (b2.size() < b3.size()) return b2;
else return b3;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |