# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
763292 | cheat_when_I_was_young | Xylophone (JOI18_xylophone) | C++17 | 196 ms | 20492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "xylophone.h"
#include "bits/stdc++.h"
using namespace std;
int q[5005][5005], a[5005];
bool check_permutation(int n) {
bool b[n+1], pos[n+1];
memset(b, 0, sizeof(b));
for (int i = 1; i <= n; ++i) if (a[i] <= n) b[a[i]] = 1;
for (int i = 1; i <= n; ++i) if (!b[i]) return false;
int pos1, pos2;
for (int i = 1; i <= n; ++i) {
if (a[i] == 1) pos1 = i;
if (a[i] == n) pos2 = i;
}
if (pos1 > pos2) return false;
for (int i = 1; i < n; ++i) if (abs(a[i+1] - a[i]) != q[i][i+1]) return false;
for (int i = 1; i < n-1; ++i)
if (max(a[i], max(a[i+1], a[i+2])) - min(a[i], min(a[i+1], a[i+2])) != q[i][i+2]) return false;
return true;
}
void build_permutation(int n, int x, int y) {
a[1] = x;
a[2] = y;
for (int i = 3; i <= n; ++i) {
if (q[i-2][i-1] + q[i-1][i] == q[i-2][i]) {
if (a[i-2] > a[i-1]) a[i] = a[i-1] - q[i-1][i];
else a[i] = a[i-1] + q[i-1][i];
} else {
if (a[i-2] > a[i-1]) a[i] = a[i-1] + q[i-1][i];
else a[i] = a[i-1] - q[i-1][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... |