Submission #139153

# Submission time Handle Problem Language Result Execution time Memory
139153 2019-07-31T10:12:07 Z triplem5ds Ancient Books (IOI17_books) C++14
0 / 100
2 ms 256 KB
#include<bits/stdc++.h>
#include "books.h"
using namespace std;
int cnt;
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(idx == v[idx])
    cnt++;
  if(cnt == v.size())
    return 0;
	if (picked > idx || picked == -1)
		return solve(idx + 1, picked, v) + 1;
	else
		return solve(idx - 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:15:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if(cnt == v.size())
      ~~~~^~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB 3rd lines differ - on the 1st token, expected: '3304', found: '1177'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB 3rd lines differ - on the 1st token, expected: '6', found: '4'
2 Halted 0 ms 0 KB -