# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
638524 | Tuanlinh123 | 순열 (APIO22_perm) | C++17 | 3 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define ld long double
#define pll pair<ll,ll>
#define mp make_pair
#define pb push_back
#define fi first
#define se second
using namespace std;
#define LOCALIO "C:/Users/admin/Documents/Code/freopen/"
vector <int> construct_permutation (ll k)
{
vector <ll> action;
while (k>1)
{
bool added=0;
for (ll i=2; i<=29; i++)
if (k%i==0)
{
added=1;
action.pb(i);
k/=i;
break;
}
if (!added)
{
k--;
action.pb(1);
}
}
reverse(action.begin(), action.end());
deque <int> q;
ll num=0;
for (ll i=0; i<action.size(); i++)
{
if (action[i]==1)
{
q.push_back(num);
num++;
}
else
{
for (ll j=num+action[i]-2; j>=num; j--)
q.push_front(j);
num+=action[i]-1;
}
}
// cout << "bruh" << flush;
vector <int> res;
while (!q.empty())
{
res.pb(q.back());
q.pop_back();
}
return res;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |