# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
706858 | grossly_overconfident | 순열 (APIO22_perm) | C++17 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
set<long long> p;
vector<int> construct_permutation(long long k)
{
int q = 1;
if (p.empty()){
while (true){
long long l = pow(2, q);
p.insert(pow(2, q));
if (q == 62){
break;
}
q++;
}
}
long long remaining = k - (k % 2);
vector<int> out, found;
int os = 0;
if (k % 2 != 0){
out.push_back(INT_MAX);
os++;
}
int fs = 0;
while (remaining > 0){
long long t = *(--p.upper_bound(remaining));
fs++;
remaining -= t;
found.push_back(t);
}
for (int i = 0; i < log2(found[0]); ++i){
out.push_back(i * 2);
os++;
}
for (int i = 1; i < fs; ++i){
out.push_back((log2(found[i]) - 1) * 2 + 1);
os++;
}
vector<int> outsorted = out;
sort(outsorted.begin(), outsorted.end());
for (int i = 0; i < os; ++i){
for (int j = 0; j < os; ++j){
if (outsorted[i] == out[j]){
out[j] = i;
break;
}
}
}
return out;
}
int no(){
int n;
cin >> n;
auto g = construct_permutation(n);
for (auto h : g){
cout << h << endl;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |