# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
431691 | rainboy | Ancient Books (IOI17_books) | C++98 | 170 ms | 18756 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "books.h"
#include <string.h>
using namespace std;
const int N = 1000000;
const int SMALL = 1000;
int min(int a, int b) { return a < b ? a : b; }
int max(int a, int b) { return a > b ? a : b; }
typedef vector<int> vi;
int dd[N];
int dp[SMALL][SMALL];
long long minimum_walk(vi pp, int s) {
int n = pp.size(), i, j;
long long ans;
ans = 0;
for (i = 0; i < n; i++)
if (i < pp[i])
ans += pp[i] - i, dd[i]++, dd[pp[i]]--;
else if (i > pp[i])
ans += i - pp[i], dd[pp[i]]++, dd[i]--;
if (s == 0) {
for (i = 1; i < n - 1; i++)
dd[i] += dd[i - 1];
i = n - 1;
# | 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... |