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 "books.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
int ans;
map<pair<int,pair<int,pair<int,pair<int,vector<int>>>>>,int> mp;
void calc(int idx,vector<int> c,int cst,int h,int l){
if(cst > ans || idx < 0 || idx >= c.size())return;
if(mp[{idx,{cst,{h,{l,c}}}}] == 1)return;
mp[{idx,{cst,{h,{l,c}}}}] = 1;
bool f = 1;
for(int i = 0;i<c.size();i++)
if(i != c[i])
f = 0;
if(f && idx == 0){
ans = min(cst,ans);
return;
}
calc(idx+1,c,cst+1,h,1);
calc(idx-1,c,cst+1,h,1);
swap(h,c[idx]);
if(l)
calc(idx,c,cst,h,0);
calc(idx+1,c,cst+1,h,1);
calc(idx-1,c,cst+1,h,1);
}
ll minimum_walk(vector<int> p, int s) {
ans = 0;
// calc(s,p,0,-1,0);
int n = p.size();
int f = -1;
for(int i=0;i<n;i++){
if(i != p[i]){
ans += abs(p[i] - i);
if(f == -1)
f = i;
}
}
if(f == -1)
ans = 0;
else
ans += f * 2;
return ans;
}
Compilation message (stderr)
books.cpp: In function 'void calc(int, std::vector<int>, int, int, int)':
books.cpp:14:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(cst > ans || idx < 0 || idx >= c.size())return;
~~~~^~~~~~~~~~~
books.cpp:18:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0;i<c.size();i++)
~^~~~~~~~~
# | 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... |