제출 #1060914

#제출 시각아이디문제언어결과실행 시간메모리
1060914stdfloat순열 (APIO22_perm)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> #include "perm.h" #include "grader.cpp" using namespace std; using ll = long long; vector<int> construct_permutation(ll k) { k--; int sm = -1; vector<int> v; while (k) { int x = __lg(k + 1); sm += x; v.push_back(x); k -= (1 << x) - 1; } vector<int> ans; for (int i = 0; i < (int)v.size(); i++) { for (int j = sm - v[i] + 1; j <= sm; j++) { ans.push_back(j); } sm -= v[i]; } return ans; }

컴파일 시 표준 에러 (stderr) 메시지

/usr/bin/ld: /tmp/cclvRrHj.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/cc0MQ7zj.o:perm.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status