# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1120213 | 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>
using namespace std;
void solve (int n){
vector<int>v;
for(int i=1;i<=n;i++){
v.push_back(i);
}
while(true){
int h=-1;
h=publish(v);
if(h<=0){
answer(v);
break;
}
v.next_permutation();
}
}