이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "xylophone.h"
using namespace std;
int const N = 5005;
int a[N];
void solve(int n) {
for (int i = 0; i + 1 < n; ++i) {
a[i+1] = query(i + 1, i + 2);
}
for (int i = 0; i + 2 < n; ++i) {
int t = query(i + 1, i + 3);
if (t == abs(a[i+1]) + abs(a[i+2])) {
if (a[i+1] < 0) a[i+2] *= -1;
} else {
if (a[i+1] > 0) a[i+2] *= -1;
}
}
partial_sum(a, a + n, a);
int mn = *min_element(a, a + n);
int sw = 0;
for (int i = 0; i < n; ++i) {
a[i] -= mn - 1;
if (sw == 0) {
if (a[i] == 1) sw = -1;
else if (a[i] == n) sw = 1;
}
}
if (sw) {
for (int i = 0; i < n; ++i) {
a[i] = n - a[i] + 1;
}
}
for (int i = 0; i < n; ++i) {
answer(i + 1, a[i]);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |