#include "books.h"
#include <bits/stdc++.h>
using ll = long long;
using std::vector;
ll minimum_walk(vector<int> P, int s) {
{
int l = 0, r = (int)P.size() - 1;
while (l < s and P[l] == l) {
l += 1;
}
while (r > s and P[r] == r) {
r -= 1;
}
P.erase(P.begin() + r + 1, P.end());
P.erase(P.begin(), P.begin() + l);
s -= l;
}
const int N = (int)P.size();
vector<char> seen(N);
vector<int> left(N), right(N);
ll ans = 0;
for (int i = 0; i < N; ++i) {
ans += std::abs(P[i] - i);
if (seen[i]) {
continue;
}
vector<int> cycle;
for (int j = i; !seen[j]; j = P[j]) {
seen[j] = true;
cycle.push_back(j);
}
const int l = *std::min_element(cycle.begin(), cycle.end());
const int r = *std::max_element(cycle.begin(), cycle.end());
for (const int j : cycle) {
left[j] = l;
right[j] = r;
}
}
int a = left[s], b = right[s], l = s, r = s;
const auto add = [&](const int k) {
a = std::min(a, left[k]);
b = std::max(b, right[k]);
};
while (true) {
while (a < l or r < b) {
if (a < l) {
l -= 1;
add(l);
} else {
r += 1;
add(r);
}
}
if (0 == l and r == N - 1) {
break;
}
ans += 1;
if (0 < l and (r == N - 1 or (right[r + 1] - left[r + 1]) < (right[l - 1] - left[l - 1]))) {
l -= 1;
add(l);
} else {
r += 1;
add(r);
}
}
return 2 * ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '6', found: '10' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '6', found: '10' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '6', found: '10' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '3304', found: '6250' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '6', found: '10' |
2 |
Halted |
0 ms |
0 KB |
- |