# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
733792 | PoonYaPat | 순열 (APIO22_perm) | C++17 | 2 ms | 468 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int mmax,mmin;
vector<int> ans;
void create(ll x) {
if (x==1) return;
if (x==2) {
ans.push_back(mmax+1);
mmax+=1;
} else if (x==3) {
ans.push_back(mmax+2);
ans.push_back(mmax+1);
mmax+=2;
} else if (x==5) {
ans.push_back(mmax+2);
ans.push_back(mmax+3);
ans.push_back(mmax+1);
mmax+=3;
} else if (x==7) {
ans.push_back(mmax+4);
ans.push_back(mmax+1);
ans.push_back(mmax+3);
ans.push_back(mmax+2);
mmax+=4;
} else {
if (x%2==0) create(x/2), create(2);
else if (x%3==0) create(x/3), create(3);
else if (x%5==0) create(x/5), create(5);
else if (x%7==0) create(x/7), create(7);
else {
create(x/2);
ans.push_back(++mmax);
ans.push_back(--mmin);
}
}
}
vector<int> construct_permutation(long long k) {
mmax=-1; mmin=0; ans.clear();
create(k);
for (int i=0; i<ans.size(); ++i) ans[i]-=mmin;
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |