Submission #71794

# Submission time Handle Problem Language Result Execution time Memory
71794 2018-08-25T16:03:58 Z nirshalmon Ancient Books (IOI17_books) C++14
0 / 100
2 ms 432 KB
#include "books.h"
#include<bits/stdc++.h>

using namespace std;

long long minimum_walk(std::vector<int> p, int s) {
	long long base = -2;
	int mx = -1;
	for (int i = 0; i < p.size(); ++i) {
		base += abs(p[i] - i);
		mx = max(p[i], i);
		if (mx <= i) base += 2;
	}
	return base;
}

Compilation message

books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:9:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i < p.size(); ++i) {
                  ~~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 248 KB Output is correct
2 Incorrect 2 ms 356 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 248 KB Output is correct
2 Incorrect 2 ms 356 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 248 KB Output is correct
2 Incorrect 2 ms 356 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 432 KB 3rd lines differ - on the 1st token, expected: '3304', found: '4290'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 248 KB Output is correct
2 Incorrect 2 ms 356 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -