#include <bits/stdc++.h>
#include "books.h"
#ifdef ONPC
#include "t_debug.cpp"
#else
#define debug(...) 42
#endif
#define sz(a) ((int)(a).size())
using namespace std;
using ll = long long;
const int INF = 1e9;
const ll INFL = 1e18;
const int RANDOM = chrono::high_resolution_clock::now().time_since_epoch().count();
mt19937 rng(RANDOM);
template<typename T, typename U> istream& operator>>(istream& is, pair<T, U>& p) { return is >> p.first >> p.second; }
const int N = 2e5, LOGN = 17, MOD = 1e9+7;
long long minimum_walk(std::vector<int> p, int s) {
int n = sz(p);
vector<vector<int>> cycles;
vector<pair<int,int>> range;
vector<int> done(n);
int distance = 0;
int mnstart = -1;
for (int i = 0; i < n; i++) {
distance += abs(p[i] - i);
if (done[i]) continue;
if (p[i] == i) continue;
done[i] = true;
if (mnstart==-1) mnstart =i;
cycles.push_back({i});
for (int cur = p[i]; !done[cur]; cur = p[cur]) {
cycles.back().push_back(cur);
done[cur] = true;
debug(cycles.back());
}
}
int k = sz(cycles);
for (int i = 0; i < k; i++) {
int l = INF, r = 0;
for (int i : cycles[i]) {
l = min(l, i);
r = max(r, i);
}
range.emplace_back(l, r);
}
int shortcut = 0;
for (int i = 0; i < k; i++) {
for (int j = i+1; j < k; j++) {
if( range[i].second < range[j].first || range[i].first > range[j].second)
continue;
shortcut++;
}
}
int waste = k * 2;
return distance + (mnstart == -1 ? 0 : mnstart * 2) + waste - shortcut * 2;
}
Compilation message
books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:6:24: warning: statement has no effect [-Wunused-value]
6 | #define debug(...) 42
| ^~
books.cpp:35:13: note: in expansion of macro 'debug'
35 | debug(cycles.back());
| ^~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '6', found: '8' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '6', found: '8' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '6', found: '8' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '3304', found: '2702' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
3rd lines differ - on the 1st token, expected: '6', found: '8' |
2 |
Halted |
0 ms |
0 KB |
- |