# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
66116 | bortoz | Xylophone (JOI18_xylophone) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int query(int,int);
void answer(int,int);
void solve(int N)
{
vector<int> V(N);
V[1] = query(1,2);
for(int i=2; i<N; i++)
{
int a = query(i,i+1);
int b = query(i-1,i+1);
if((abs(a-b) == abs(V[i-1]-V[i-2])) == (V[i-2] < V[i-1]))
V[i] = V[i-1] + a;
else
V[i] = V[i-1] - a;
}
auto it = minmax_element(V.begin(),V.end());
bool flip = it.fi < it.se;
int mi = *it.fi;
for(int& i : V) i = flip ? i+1-mi : N-i+mi;
for(int i=1; i<=N; i++)
answer(i,V[i-1]);
}