이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define fo(i, n) for(ll i = 0; i<(n); i++)
#define F first
#define S second
#define pb push_back
#define deb(x) cout << #x << " = " << (x) << endl
#define deb2(x, y) cout << #x << " = " << (x) << ", " << #y << " = " << (y) << endl
typedef vector<ll> vl;
typedef vector<vl> vvl;
vl color, nextB;
ll ans = 0, c = 0;
void dfs(int u){
if(color[u]!=-1) return;
color[u] = c;
dfs(nextB[u]);
ans+=abs(nextB[u]-u);
}
long long minimum_walk(std::vector<int> p, int s){
ll n = p.size();
fo(i, n)nextB.pb(p[i]);
color.assign(n, -1);
fo(i, n){
if(nextB[i] == i|| color[i]!=-1) continue;
dfs(i);
c++;
}
// priority_queue<tuple<ll, ll, ll>> pq;
// fo(i, n){
// fo(j, n){
// }
// }
return ans+(c-1)*2;
}
# | 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... |