# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1121222 | vjudge1 | Art Collections (BOI22_art) | C++17 | 0 ms | 0 KiB |
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>
//#include "art.h"
#define ll long long
#define all(x) x.begin(), x.end()
#define in insert
#define F first
#define S second
#define ppf pop_front
#define pb push_back
#define ppb pop_back
#define pf push_front
#define pii pair <int, int>
#define pll pair <ll, ll>
#define boost() ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define sz(x) (int)x.size()
using namespace std;
void solve(int n) {
vector<int> a;
for(int i=1 ; i <= n ; i++)
a.push_back(i);
int ls=publish(a);
vector<int> ans;
for(int i=1 ; i < n ; i++){
int x=a.back();
a.pop_back();
reverse(all(a));
a.pb(x);
reverse(all(a));
int nw=publish(a);
ans.pb((ls-nw+n-1)/2);
}
ans.pb(a[0]);
answer(ans);
}