이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include<bits/stdc++.h>
using namespace std;
long long dp[6000];
int a[6000];
int mn;
vector<int> ans;
void go(long long k, int n, int p[]) {
for(int i = 1; i <= n; ++i) {
a[i] = p[i-1];
}
long long cur = 1;
for(int i = 1; i <= n; ++i) {
dp[i] = 1;
for(int j = 1; j < i; ++j) {
if(a[j]<a[i]) {
dp[i] += dp[j];
}
}
cur += dp[i];
}
if(cur>k) {
return;
}
int old = n;
while(cur<k) {
vector<pair<int, long long> > b;
for(int i = 1; i <= n; ++i) {
b.push_back({a[i], dp[i]});
}
sort(b.begin(), b.end());
long long add = 1, need = k-cur;
int nxt = 0;
for(auto [x, y] : b) {
if(add+y<=need) {
nxt = x+1;
add += y;
} else {
break;
}
}
for(int i = 0; i <= n; ++i) {
if(a[i] >= nxt) {
a[i]++;
}
}
a[++n] = nxt;
dp[n] = add;
cur += add;
}
assert(n<=200);
vector<int> res;
for(int i = 1; i <= n; ++i) {
res.push_back(a[i]);
}
if(n<mn) {
mn = n;
ans = res;
}
}
std::vector<int> construct_permutation(long long k) {
srand(time(NULL));
mn = 1e9;
int p[6];
int c = 1;
for(int n = 1; n <= 5; ++n) {
c *= n;
for(int i = 0; i < n; ++i) {
p[i] = i;
}
for(int i = 1; i <= min(50, c); ++i) {
random_shuffle(p, p+n);
go(k, n, p);
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
perm.cpp: In function 'void go(long long int, int, int*)':
perm.cpp:28:6: warning: unused variable 'old' [-Wunused-variable]
28 | int old = n;
| ^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |