# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
975655 | ShaShi | 순열 (APIO22_perm) | C++17 | 2 ms | 596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include <bits/stdc++.h>
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define pb push_back
#define mp make_pair
#define pii pair<int, int>
using namespace std;
typedef long long ll;
const int MAXN = (int)1e6 + 7;
const int LG = 60;
vector<int> construct_permutation(ll k) {
vector<int> res;
bool flag = 0;
for (int i=LG-1; i>=0; i--) {
if (!(k&(1ll<<i))) continue;
// for (int j:res) cout << j << " ";
// cout << endl;
// cout << "!" << i << endl;
if (!flag) {
for (int j=1; j<=i; j++) res.pb(j);
flag = 1;
continue;
}
for (int j=0; j<res.size(); j++) if (res[j] >= i+1) res[j]++;
res.pb(i+1);
}
for (int i=0; i<res.size(); i++) res[i]--;
return res;
}
// int main() {
// vector<int> res = construct_permutation(42);
// for (int i:res) cout << i << " ";
// return 0;
// }
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |