이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "books.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1e6 + 11;
struct range{
int l, r;
bool extend(range rg){
bool changed = false;
if(rg.l < l) changed = true, l = rg.l;
if(rg.r > r) changed = true, r = rg.r;
return changed;
}
friend bool operator!= (const range& s, const range& t){
return s.l != t.l || s.r != t.r;
}
};
bool vis[MAXN];
range cyc[MAXN];
long long minimum_walk(vector<int> p, int s) {
int n = p.size();
bool all_eq = true;
for(int i = 0; i < n; i++) if(p[i] != i) all_eq = false;
if(all_eq) return 0;
int al = 0, ar = n - 1; while(p[al] == al) al++; while(p[ar] == ar) ar--;
long long ans = 0;
for(int i = 0; i < n; i++){
ans += abs(p[i] - i);
}
for(int i = 0; i < n; i++){
if(!vis[i]){
vector<int> c = {i}; int x = p[i]; range r = {i, i};
while(x != c[0]){
r.extend({x, x});
c.push_back(x);
vis[x] = true;
x = p[x];
}
for(auto j : c) cyc[j] = r;
}
}
for(int i = s - 1; i >= 0; i--){
cyc[i].extend(cyc[i + 1]);
}
for(int i = s + 1; i < n; i++){
cyc[i].extend(cyc[i - 1]);
}
{
range cur = cyc[s], nxt = cyc[s];
do{
cur = nxt;
nxt.extend(cyc[nxt.l]);
nxt.extend(cyc[nxt.r]);
}while(cur != nxt);
cyc[s] = nxt;
}
for(int i = s - 1; i >= 0; i--){
cyc[i].extend(cyc[i + 1]);
range cur = cyc[i], nxt = cyc[i];
do{
cur = nxt;
nxt.extend(cyc[nxt.l]);
nxt.extend(cyc[nxt.r]);
}while(cur != nxt);
cyc[i] = nxt;
}
for(int i = s + 1; i < n; i++){
cyc[i].extend(cyc[i - 1]);
range cur = cyc[i], nxt = cyc[i];
do{
cur = nxt;
nxt.extend(cyc[nxt.l]);
nxt.extend(cyc[nxt.r]);
}while(cur != nxt);
cyc[i] = nxt;
}
int c = 0;
while(cyc[c].r < ar){
c = cyc[c].r; ++c; ans += 2;
}
return ans;
}
# | 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... |