# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
992919 | MarwenElarbi | 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>
using namespace std;
#define fi first
#define se second
#define ll long long
#define pb push_back
const int nax=1e6;
int publish(std::vector<int>);
void answer(std::vector<int>);
vector<int> tab;
int ans;
void daq(int l,int r){
if(l==r) return;
int mid=(r+l)/2;
daq(l,mid);
daq(mid+1,r);
int j=mid+1;
vector<int> current;
for (int i = l; i <= mid; ++i)
{
while(j<=r){
swap(tab[i],tab[j]);
int cur=publish(tab);
if(ans>cur){
current.pb(tab[i]);
ans=cur;
swap(tab[i],tab[j]);
j++;
continue;
}
swap(tab[i],tab[j]);
}
current.pb(tab[i]);
}
while(j<=r){
current.pb(tab[j]);
j++;
}
for (int i = l; i <= r; ++i)
{
tab[i]=current[i];
}
ans=publish(tab);
return;
}