# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
897241 | d4xn | 순열 (APIO22_perm) | C++17 | 1 ms | 436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int N = 5000, M = 100;
const ll L = 62;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
vector<int> gen(vector<int> vt) {
sort(vt.rbegin(), vt.rend());
vector<int> p;
for (int& i : vt) {
//cerr << i << endl;
if (p.empty()) {
for (int j = 0; j < i; j++) {
p.push_back(j);
//cerr << "a " << j << endl;
}
}
else {
for (int j = i; j < p.size(); j++) {
p[j]++;
}
p.push_back(p[i]-1);
//cerr << "b " << p[i]-1 << endl;
}
}
return p;
}
vector<int> construct_permutation(ll k)
{
vector<int> p, p2, vt;
if (!k) return p;
vt.clear();
for (int j = L; j >= 0; j--) {
if ((k >> j) & 1) {
vt.push_back(j);
}
}
p2 = gen(vt);
if (p.empty() || p2.size() < p.size()) swap(p, p2);
return p;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |