Submission #139016

# Submission time Handle Problem Language Result Execution time Memory
139016 2019-07-31T07:46:39 Z Bohoty Ancient Books (IOI17_books) C++14
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
#include "books.h"
using namespace std;
int solve(int idx, int picked, vector < int > &v){
	if (picked == -1 && v[idx] != idx){
		picked = v[idx];
		v[idx] = -1;
	}
	if (picked == idx){
		swap(v[idx], picked);
	}
	if (picked > idx || picked == -1)
		return solve(i + 1, picked, v) + 1;
	else
		return solve(i - 1, picked, v) + 1;
}
long long minimum_walk(std::vector<int> v, int s) {
	return solve(s, -1, v);
	return 0;
}

Compilation message

books.cpp: In function 'int solve(int, int, std::vector<int>&)':
books.cpp:13:16: error: 'i' was not declared in this scope
   return solve(i + 1, picked, v) + 1;
                ^
books.cpp:15:16: error: 'i' was not declared in this scope
   return solve(i - 1, picked, v) + 1;
                ^