Submission #1060919

#TimeUsernameProblemLanguageResultExecution timeMemory
1060919stdfloat순열 (APIO22_perm)C++17
71.22 / 100
7 ms1372 KiB
#include <bits/stdc++.h>
#include "perm.h"
// #include "grader.cpp"
using namespace std;

using ll = long long;

vector<int> construct_permutation(ll k) {
    k--;

    int sm = -1;
    vector<int> v;
    while (k) {
        int x = __lg(k + 1);
        
        sm += x;
        v.push_back(x);
        
        k -= (1LL << x) - 1;
    }

    vector<int> ans;
    for (int i = 0; i < (int)v.size(); i++) {
        for (int j = sm - v[i] + 1; j <= sm; j++) {
            ans.push_back(j);
        }

        sm -= v[i];
    }

    return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...