#include "books.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e6 + 20;
int par[maxn];
int depth[maxn];
bool flag[maxn];
bool skip[maxn];
int nxt[maxn];
int pref[maxn];
int root(int u) {
if (par[u] == -1) {
return u;
}
else {
return par[u] = root(par[u]);
}
}
bool update(int u, int v) {
int ru = root(u);
int rv = root(v);
if (ru == rv) {
return false;
}
if (depth[ru] > depth[rv]) {
swap(ru, rv);
}
par[ru] = rv;
if (depth[ru] == depth[rv]) {
depth[rv]++;
}
return true;
}
long long minimum_walk(vector<int> a, int s) {
assert(a[s] != s);
int n = a.size();
for (int i = 0; i < n; i++) {
par[i] = -1;
}
long long res = 0;
for (int i = 0; i < n; i++) {
res += abs(a[i] - i);
if (i != s && a[i] == i) {
skip[i] = true;
}
pref[min(a[i], i)]++;
pref[max(a[i], i)]--;
}
for (int i = 0; i < n; i++) {
if (i > 0) {
pref[i] += pref[i - 1];
}
if (pref[i] > 0) {
update(i, i + 1);
}
}
nxt[n - 1] = -1;
for (int i = n - 2; i >= 0; i--) {
if (!skip[i + 1]) {
nxt[i] = i + 1;
}
else {
nxt[i] = nxt[i + 1];
}
}
vector<pair<int, pair<int, int>>> edges;
for (int i = 0; i < n - 1; i++) {
if (!skip[i] && nxt[i] != -1) {
edges.emplace_back(nxt[i] - i, make_pair(i, nxt[i]));
}
}
sort(edges.begin(), edges.end());
for (auto e: edges) {
if (update(e.second.first, e.second.second)) {
res += e.first * 2;
}
}
return res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
3rd lines differ - on the 1st token, expected: '3304', found: '2744' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |