답안 #71794

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
71794 2018-08-25T16:03:58 Z nirshalmon 고대 책들 (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) {
                  ~~^~~~~~~~~~
# 결과 실행 시간 메모리 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 -
# 결과 실행 시간 메모리 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 -
# 결과 실행 시간 메모리 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 -
# 결과 실행 시간 메모리 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 -
# 결과 실행 시간 메모리 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 -