이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "books.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<int, pii> piii;
typedef pair<ll, ll> pll;
typedef pair<ll, pll> plll;
#define fi first
#define se second
const int INF = 1e9+1;
const int P = 1000000007;
const ll LLINF = (ll)1e18+1;
template <typename T1, typename T2>
ostream& operator<<(ostream& os, const pair<T1, T2>& p) { os << p.fi << " " << p.se; return os; }
template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v) { for(auto i : v) os << i << " "; os << "\n"; return os; }
ll minimum_walk(vector<int> p, int s) {
int n = p.size();
vector<vector<int>> A;
vector<int> B(n);
vector<bool> vis(n, false);
for(int i = 0; i < n; i++) {
if(vis[i]) continue;
vector<int> T;
int tmp = i;
do {
T.push_back(tmp);
B[tmp] = A.size();
vis[tmp] = true;
tmp = p[tmp];
} while(tmp != i);
A.push_back(T);
}
int ma = *max_element(A[B[s]].begin(), A[B[s]].end());
ll ans = 0LL;
for(int i = 0; i < p.size(); i++) ans += abs(i-p[i]);
int mima = ma;
for(auto &T : A) if(T.size() > 1) mima = max(mima, *min_element(T.begin(), T.end()));
ans += (ll)(mima-ma)*2LL;
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
books.cpp: In function 'll minimum_walk(std::vector<int>, int)':
books.cpp:38:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
38 | for(int i = 0; i < p.size(); i++) ans += abs(i-p[i]);
| ~~^~~~~~~~~~
# | 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... |