답안 #58445

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
58445 2018-07-17T20:59:41 Z reality 고대 책들 (IOI17_books) C++17
0 / 100
4 ms 356 KB
#include "books.h"
#include "bits/stdc++.h"
using namespace std;
#define fi first
#define se second
#define ll long long
#define dbg(v) cerr<<#v<<" = "<<v<<'\n'
#define vi vector<int>
#define vl vector <ll>
#define pii pair<int,int>
#define mp make_pair
#define db long double
#define pb push_back
#define all(s) s.begin(),s.end()
template < class T > T smin(T &a,T b) {if (a > b) a = b;return a;}
template < class T > T smax(T &a,T b) {if (a < b) a = b;return a;}
#include "books.h"
long long minimum_walk(std::vector<int> p, int s) {
	int n = p.size();
	ll ans = 0;
	for (int i = 0;i < n;++i)
		ans += abs(i - p[i]);
	dbg(ans);
	int mx = 0;
	for (int i = 0;i + 1 < n;++i)
		smax(mx,p[i]),ans += 2 * (i == mx);
	return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 248 KB secret mismatch
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 248 KB secret mismatch
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 248 KB secret mismatch
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 356 KB secret mismatch
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 248 KB secret mismatch
2 Halted 0 ms 0 KB -