This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "bits/stdc++.h"
using namespace std;
#include "xylophone.h"
int a[5001];
map<pair<int, int>, int>mp;
bool sol(int n, int j) {
a[j] = 1;
int b[n + 1];
for(int i = j - 1; i >= 1; i--) {
int x = mp[{i, i + 1}];
b[i] = x;
if(i == j - 1) {
a[i] = x + 1;
continue;
}
int y = mp[{i, i + 2}];
if(a[i + 1] < a[i + 2]) {
if(a[i + 1] + x < a[i + 2]) {
if(y == b[i + 1])
a[i] = a[i + 1] + x;
else
a[i] = a[i + 1] - x;
}
else {
if(y == a[i + 2] - (a[i + 1] - x))
a[i] = a[i + 1] - x;
else
a[i] = a[i + 1] + x;
}
}
else {
if(a[i + 1] - x > a[i + 2]) {
if(y == b[i + 1])
a[i] = a[i + 1] - x;
else
a[i] = a[i + 1] + x;
}
else {
if(y == (a[i + 1] + x) - a[i + 2])
a[i] = a[i + 1] + x;
else
a[i] = a[i + 1] - x;
}
}
}
for(int i = j + 1; i <= n; i++) {
int x = mp[{i - 1, i}];
b[i] = x;
if(i == j + 1) {
a[i] = x + 1;
continue;
}
int y = mp[{i - 2, i}];
if(a[i - 1] < a[i - 2]) {
if(a[i - 1] + x < a[i - 2]) {
if(y == b[i - 1])
a[i] = a[i - 1] + x;
else
a[i] = a[i - 1] - x;
}
else {
if(y == a[i - 2] - (a[i - 1] - x))
a[i] = a[i - 1] - x;
else
a[i] = a[i - 1] + x;
}
}
else {
if(a[i - 1] - x > a[i - 2]) {
if(b[i - 1] == y)
a[i] = a[i - 1] - x;
else
a[i] = a[i - 1] + x;
}
else {
if(y == (a[i - 1] + x) - a[i - 2])
a[i] = a[i - 1] + x;
else
a[i] = a[i - 1] - x;
}
}
}
vector<int> ve;
for(int i = 1; i <= n; i++)
ve.push_back(a[i]);
sort(ve.begin(), ve.end());
for(int i = 1; i <= n; i++) {
if(ve[i - 1] != i)
return 0;
}
return 1;
}
void solve(int n) {
int j = 1;
for(int i = 1; i <= n; i++) {
a[i] = 0;
if(i + 1 <= n)
mp[{i, i + 1}] = query(i, i + 1);
if(i + 2 <= n)
mp[{i, i + 2}] = query(i, i + 2);
}
for(int i = 1; i <= n; i++) {
if(sol(n, i))
break;
}
for(int i = 1; i <= n; i++)
answer(i, a[i]);
}
Compilation message (stderr)
xylophone.cpp: In function 'void solve(int)':
xylophone.cpp:97:9: warning: unused variable 'j' [-Wunused-variable]
97 | int j = 1;
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |