# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
721593 | Mr_Husanboy | Art Collections (BOI22_art) | C++17 | 127 ms | 464 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 "art.h"
#include<bits/stdc++.h>
#define all(a) (a).begin(), (a).end()
template<typename T>
int len(T &a){
return a.size();
}
using namespace std;
void solve(int n) {
vector comp(n, vector(n, -1));
vector<int> v(n);
iota(all(v), 1);
sort(all(v), [&](int i, int j){
if(~comp[i - 1][j - 1]) return comp[i - 1][j - 1];
vector<int> p = {i,j};
for(int k = 1; k <= n; k ++){
if(k != i && k != j) p.push_back(k);
}
int y = publish(p);
swap(p[0], p[1]);
int x = publish(p);
if(y < x){
comp[i - 1][j - 1] = 1;
comp[j - 1][i - 1] = 0;
}else
comp[j - 1][i - 1] = 1,
comp[i - 1][j - 1] = 0;
return comp[i - 1][j - 1];
});
answer(v);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |