# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
516091 | lovrot | Xylophone (JOI18_xylophone) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "xylophone.h"
using namespace std;
vector<int> rj(n);
int ask(int s, int t){
return query(s + 1, t + 1);
}
void solve(int n){
rj[0] = 0;
rj[1] = rj[0] + ask(0, 1);
for(int i = 0; i + 2 < n; i++){
int cur = abs(rj[i] - rj[i + 1]);
int c = ask(i, i + 2);
if(c == cur){
int d = ask(i + 1, i + 2);
if(rj[i + 1] > rj[i]){
rj[i + 2] = rj[i + 1] - d;
}
else{
rj[i + 2] = rj[i + 1] + d;
}
}
else{
int d = ask(i + 1, i + 2);
if(c == d){
if(rj[i + 1] > rj[i]){
rj[i + 2] = rj[i + 1] - c;
}
else{
rj[i + 2] = rj[i + 1] + c;
}
}
else{
if(rj[i] > rj[i + 1]){
rj[i + 2] = rj[i] - c;
}
else{
rj[i + 2] = rj[i] + c;
}
}
}
}
int mn = 0, mx = 0;
for(int i = 0 ; i < n ; i++){
if(rj[i] < rj[mn]) mn = i;
if(rj[i] > rj[mx]) mx = i;
}
if(mx < mn){
for(int i : rj){
i *= -1;
}
}
mn = 1e9;
for(int i : rj) mn = min(mn, i);
for(int i : rj) i = i - mn + 1;
for(int i = 0 ; i < n ; i++){
answer(i + 1, rj[i]);
}
}