# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
861166 | ZeroCool | Xylophone (JOI18_xylophone) | C++14 | 69 ms | 1184 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "xylophone.h"
#include <bits/stdc++.h>
using namespace std;
int a[5001];
void solve(int n) {
int x, y, i, u, v, mn;
a[2] = query(1, 2);
for (i = 2; i < n; i++) {
x = query(i, i + 1); y = query(i - 1, i + 1);
a[i + 1] = a[i] + x * (a[i] - a[i - 1] < 0 ? 1 : -1) * (y == x + abs(a[i] - a[i - 1]) ? -1 : 1);
}
mn = *min_element(a + 1, a + n + 1);
for (i = 1; i <= n; i++) {
a[i] -= mn;
if (!a[i]) u = i;
if (a[i] == n - 1) v = i;
}
bool flag = u < v;
for (int i = 1; i <= n; i++) answer(i, flag ? a[i] + 1 : n - 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... |