# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
240286 | karma | Swap (BOI16_swap) | C++14 | 5 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb emplace_back
#define ll long long
#define fi first
#define se second
#define mp make_pair
//#define int int64_t
using namespace std;
const int N = int(2e5) + 7;
const int logN = 18;
typedef pair<int, int> pii;
int n, a[N];
int Min(int x, int y) {
int res = n + 1;
if(x <= n) res = min(res, a[x]);
if(y <= n) res = min(res, a[y]);
return res;
}
int32_t main() {
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
#define Task "test"
if(fopen(Task".inp", "r")) {
freopen(Task".inp", "r", stdin);
freopen(Task".out", "w", stdout);
}
cin >> n;
for(int i = 1; i <= n; ++i) cin >> a[i];
a[n + 1] = n + 1;
for(int x, y, i = 1; i * 2 <= n; ++i) {
x = (1 << i), y = x | 1;
if(a[i] < a[x] && a[i] < a[y]) continue;
if(a[i] > a[x] && a[i] < a[y]) swap(a[i], a[x]);
else if(a[i] < a[x] && a[y] < a[i]) {
if(Min(x << 1, x << 1 | 1) > a[i] ||
(Min(x << 1, x << 1 | 1) < a[i] && Min(y << 1, y << 1 | 1) < a[x])) swap(a[x], a[i]);
swap(a[y], a[i]);
} else if(a[i] > a[y] && a[y] > a[x]) swap(a[x], a[i]);
else {
if(Min(x << 1, x << 1 | 1) < a[x]) swap(a[x], a[i]);
swap(a[y], a[i]);
}
}
for(int i = 1; i <= n; ++i) cout << a[i] << ' ';
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |