제출 #293031

#제출 시각아이디문제언어결과실행 시간메모리
293031Haunted_Cpp고대 책들 (IOI17_books)C++17
0 / 100
1 ms512 KiB
#include "books.h"
#include <bits/stdc++.h>
using namespace std;


const int MAX_N = 1e6 + 5;
vector<int> p;

int last_p = -1;

long long solve(int idx, int carry) {
  int current_location = idx;
  int nxt_location = carry;
  if (current_location != nxt_location) {
    return abs(idx - nxt_location) + solve(nxt_location, carry);
  }
  assert(idx != -1);
  int was = p[current_location];
  p[current_location] = carry;
  assert(was != carry);
  carry = was;
  nxt_location = carry;
  if (carry == -1) {
    last_p = idx;
    return 0;
  }
  return abs(idx - nxt_location) + solve(nxt_location, carry);
}

long long minimum_walk(vector<int> p, int s) {
  assert(s == 0);
  ::p = p;
  const int n = p.size();
  long long res = 0;
  int idx = 0;
  for (int i = 0; i < n; i++) {
    if (p[i] != i) {
      int was = ::p[i];
      ::p[i] = -1;
      last_p = -1;
      res += abs(idx - i) + solve(i, was);
      if (is_sorted(::p.begin(), ::p.end())) {
        return last_p + res;
      }
      idx = last_p;
    }
  }
}

컴파일 시 표준 에러 (stderr) 메시지

books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:48:1: warning: control reaches end of non-void function [-Wreturn-type]
   48 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...