# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
714209 | vjudge1 | Art Collections (BOI22_art) | C++17 | 120 ms | 208 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>
using namespace std;
void solve(int n) {
vector<int> order(n);
for (int i = 0; i < n; i++) order[i] = i + 1;
// bubble sort
for (int i = 1; i <= n; i++){
for (int j = 0; j < n - 1; j++){
int first = publish(order);
swap(order[j], order[j + 1]);
int second = publish(order);
if(first < second) swap(order[j], order[j + 1]);
}
}
answer(order);
}
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... |