#include "art.h"
//
// --- Sample implementation for the task art ---
//
// To compile this program with the sample grader, place:
// art.h art_sample.cpp sample_grader.cpp
// in a single folder, then open the terminal in this directory (right-click onto an empty spot in the directory,
// left click on "Open in terminal") and enter e.g.:
// g++ -std=c++17 art_sample.cpp sample_grader.cpp
// in this folder. This will create a file a.out in the current directory which you can execute from the terminal
// as ./a.out
// See task statement or sample_grader.cpp for the input specification
//
#include <vector>
#include <iostream>
using namespace std;
void solve(int N) {
vector<int> order(N,N);
vector<int> temp(N);
for(int i{};i < N;i++){
temp[i] = i+1;
}
int last = publish(temp);
for(int i{1};i < N;i++){
temp.emplace_back(temp.front());
temp.erase(temp.begin());
int val = publish(temp);
int ord = ((val-last)+1+N)/2;
//cout << ord << endl;
order[N-ord] = i;
last = val;
}
answer(order);
}