# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
476808 | ponytail | Arranging Shoes (IOI19_shoes) | C++17 | 1103 ms | 427648 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;
const int MAXN = 1e5 + 5;
typedef long long ll;
int n;
int inv(int x){
if(x<0) return -x;
else if(x>n) return x - n;
else return x + n;
}
mt19937 rng((int)std::chrono::steady_clock::now().time_since_epoch().count());
ll alt_sol(vector<int> S) {
map<vector<int>, int> vis;
map<vector<int>, int> dist;
dist[S] = 0;
vector<int> T = S;
sort(S.begin(), S.end());
do {
if(S != T) dist[S] = 1e9;
} while(next_permutation(S.begin(), S.end()));
queue<vector<int> > q;
q.push(T);
while(q.size()) {
vector<int> f = q.front(); q.pop();
vector<int> og = f;
if(vis[f]) continue;
vis[f] = 1;
for(int i=1; i<f.size(); i++) {
swap(f[i-1], f[i]);
if(!vis[f] && dist[f] > dist[og] + 1) {
dist[f] = dist[og] + 1;
q.push(f);
}
swap(f[i-1], f[i]);
}
}
int ans = 1e9;
for(auto x : dist) {
int wow = x.first.size() / 2;
bool ok = 1;
for(int i=0; i<wow; i++) {
if(x.first[2*i] > 0 || x.first[2*i+1] < 0) ok = 0;
}
if(ok) {
ans = min(ans, x.second);
}
}
return ans;
}
ll count_swaps(vector<int> S) {
return alt_sol(S);
}
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... |