# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
482539 | two_sides | Ancient Books (IOI17_books) | C++17 | 146 ms | 19824 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "books.h"
#include <bits/stdc++.h>
using namespace std;
template <class X, class Y>
bool cmin(X &a, const Y &b) {
return a > b ? a = b, 1 : 0;
}
template <class X, class Y>
bool cmax(X &a, const Y &b) {
return a < b ? a = b, 1 : 0;
}
long long minimum_walk(vector<int> p, int s) {
int n = p.size(), cnt = 0;
long long res = 0;
vector<int> idx(n, -1), lef(n), rig(n);
int min_l = s, max_r = s;
for (int i = 0; i < n; i++) {
res += abs(p[i] - i);
if (idx[i] >= 0) continue;
lef[cnt] = rig[cnt] = i;
int j = i;
while (idx[j] < 0) {
idx[j] = cnt;
cmin(lef[cnt], j);
cmax(rig[cnt], j);
j = p[j];
# | 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... |