#include <bits/stdc++.h>
#include "books.h"
#define pii pair<int, int>
#define F first
#define S second
using namespace std;
const int MX = 1e6 + 100;
int boss[MX], sz[MX];
int Find(int u) {
return boss[u] == u ? u : boss[u] = Find(boss[u]);
}
void merge(int a, int b) {
a = Find(a), b = Find(b);
if(a == b) return;
boss[a] = b;
sz[b] += sz[a];
}
priority_queue<int> pq[MX];
long long minimum_walk(vector<int> p, int s) {
int n = p.size();
long long sum = 0, cnt = 0;
for(int i = 0; i < n; i ++) boss[i] = i, sz[i] = 1, cnt += (i != s and p[i] == i);
for(int i = 0; i < n; i ++) sum += abs(i - p[i]), merge(i, p[i]);
vector<pair<int, pii> > E;
for(int i = 0; i + 1 < n; i ++) {
if(p[i] == i and i != s) continue;
int ptr = i + 1;
while(ptr != s and ptr < n and p[ptr] == ptr) ptr ++;
if(ptr < n) {
// cout << "E " << i << ' ' << ptr << endl;
E.push_back({ptr - i, {i, ptr}});
}
}
sort(E.begin(), E.end());
for(auto it: E) {
if(Find(it.S.F) != Find(it.S.S)) {
// cout << it.S.F << ' ' << it.S.S << endl;
merge(it.S.F, it.S.S);
sum += 2 * it.F;
}
}
// cout << cnt << ' ' << sz[Find(s)] << endl;
assert(cnt + sz[Find(s)] == n);
return sum;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
32 ms |
31616 KB |
Output is correct |
2 |
Correct |
32 ms |
31736 KB |
Output is correct |
3 |
Correct |
34 ms |
31608 KB |
Output is correct |
4 |
Correct |
32 ms |
31608 KB |
Output is correct |
5 |
Correct |
32 ms |
31608 KB |
Output is correct |
6 |
Incorrect |
36 ms |
31692 KB |
3rd lines differ - on the 1st token, expected: '8', found: '10' |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
32 ms |
31616 KB |
Output is correct |
2 |
Correct |
32 ms |
31736 KB |
Output is correct |
3 |
Correct |
34 ms |
31608 KB |
Output is correct |
4 |
Correct |
32 ms |
31608 KB |
Output is correct |
5 |
Correct |
32 ms |
31608 KB |
Output is correct |
6 |
Incorrect |
36 ms |
31692 KB |
3rd lines differ - on the 1st token, expected: '8', found: '10' |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
32 ms |
31616 KB |
Output is correct |
2 |
Correct |
32 ms |
31736 KB |
Output is correct |
3 |
Correct |
34 ms |
31608 KB |
Output is correct |
4 |
Correct |
32 ms |
31608 KB |
Output is correct |
5 |
Correct |
32 ms |
31608 KB |
Output is correct |
6 |
Incorrect |
36 ms |
31692 KB |
3rd lines differ - on the 1st token, expected: '8', found: '10' |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
34 ms |
31608 KB |
3rd lines differ - on the 1st token, expected: '3304', found: '4074' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
32 ms |
31616 KB |
Output is correct |
2 |
Correct |
32 ms |
31736 KB |
Output is correct |
3 |
Correct |
34 ms |
31608 KB |
Output is correct |
4 |
Correct |
32 ms |
31608 KB |
Output is correct |
5 |
Correct |
32 ms |
31608 KB |
Output is correct |
6 |
Incorrect |
36 ms |
31692 KB |
3rd lines differ - on the 1st token, expected: '8', found: '10' |
7 |
Halted |
0 ms |
0 KB |
- |