# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
714204 | 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 <art.h>
using namespace std;
void solve(int N){
vector<int> a(N);
for(int i=0 ; i<N ; i++){
a[i] = i + 1;
}
int now = publish(a);
if(now == 0){
answer(a);
}
while(next_permutation(all(a))){
now = publish(a);
if(now == 0){
answer(a);
return;
}
}
}