# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
821728 | alvingogo | The Collection Game (BOI21_swaps) | C++14 | 5 ms | 444 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 "swaps.h"
#include <bits/stdc++.h>
#define fs first
#define sc second
using namespace std;
void solve(int n, int v) {
vector<int> a(n);
iota(a.begin(),a.end(),1);
for(int p=1;p<n;p<<=1){
for(int k=p;k>=1;k>>=1){
vector<pair<int,int> > nw;
for(int j=k%p;j+k<n;j+=2*k){
for(int i=0;i+j+k<n && i<k;i++){
if((i+j)/(p*2) == (i+j+k)/(p*2)){
nw.push_back({i+j,i+j+k});
schedule(a[i+j],a[i+j+k]);
}
}
}
auto h=visit();
for(int i=0;i<nw.size();i++){
if(!h[i]){
swap(a[nw[i].fs],a[nw[i].sc]);
}
}
}
}
answer(a);
}
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... |
# | 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... |