| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1082432 | Valaki2 | Ancient Books (IOI17_books) | C++14 | 77 ms | 22776 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "books.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
ll minimum_walk(vector<signed> p, signed s) {
int n = (int) p.size();
vector<int> v(1 + n, 0);
for(int i = 1; i <= n; i++) {
v[i] = p[i - 1] + 1;
}
s++;
ll ans = 0;
vector<int> cnt(1 + n, 0);
for(int i = 1; i <= n; i++) {
ans += abs(i - v[i]);
int a = i, b = v[i];
if(a > b) {
swap(a, b);
}
cnt[a]++;
cnt[b]--;
}
int k = 0;
for(int i = 1; i <= n; i++) {
if(v[i] != i) {
k = i;
}
}
int cur = 0;
for(int i = 1; i <= n; i++) {
cur += cnt[i];
if(i <= k - 1 && cur == 0) {
ans += 2;
}
}
return ans;
}
| # | 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... | ||||
