Submission #58404

# Submission time Handle Problem Language Result Execution time Memory
58404 2018-07-17T18:12:54 Z reality Ancient Books (IOI17_books) C++17
0 / 100
3 ms 484 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;
	int mx = 0;
	vi was(n,0);
	vector < pii > e;
	for (int i = 0;i < n;++i) 
		if (!was[i]) {
			int cnt = i;
			int mx = 0;
			do {
				was[cnt] = 1;
				smax(mx,cnt);
				cnt = p[cnt];
			} while (cnt != i);
			e.pb(mp(i,mx));
		}
	for (int i = 0;i < n;++i)
		ans += abs(i - p[i]);
	int k = e.size();
	ans += k * (k - 1);
	int j = 0;
	for (int i = 0;i < k;++i) {
		while (j + 1 < k && e[j + 1].fi <= e[i].se)
			++j;
		ans -= 2 * (j - i);
	}
	return ans;
}

Compilation message

books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:21:6: warning: unused variable 'mx' [-Wunused-variable]
  int mx = 0;
      ^~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 248 KB Output is correct
2 Incorrect 2 ms 484 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 484 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 484 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 3 ms 484 KB 3rd lines differ - on the 1st token, expected: '3304', found: '2744'
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 484 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
3 Halted 0 ms 0 KB -