#include "books.h"
#include <bits/stdc++.h>
using namespace std;
typedef vector<int> vi;
int n;
int l = 0;
int h = -1;
vi a;
int bst = INT_MAX;
bool correct()
{
bool r = true;
for (int i = 0; i < n; i++)
if (a[i] != i)
r = false;
return r;
}
void bk(int p, int d)
{
//cout << d << endl;
if (p == 0 && correct()) {
bst = min(bst, l);
return;
}
if (l >= bst || d >= 20)
return;
for (int i = 0; i < n; i++) {
//if (i == p)
// continue;
l += abs(p - i);
swap(h, a[p]);
bk(i, d + 1);
swap(h, a[p]);
bk(i, d + 1);
l -= abs(p - i);
}
}
long long minimum_walk(vector<int> p, int s)
{
//cout << "HELLO" << endl;
n = p.size();
for (int x : p)
a.push_back(x);
bk(0, 0);
return bst;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2070 ms |
212 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2070 ms |
212 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2070 ms |
212 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2055 ms |
212 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2070 ms |
212 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |