Submission #58441

# Submission time Handle Problem Language Result Execution time Memory
58441 2018-07-17T20:55:28 Z reality Ancient Books (IOI17_books) C++17
0 / 100
6 ms 752 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;
	while (s < n && p[s] == s)
		++s,ans += 2;
	if (s == n)
		return 0;
	vi was(n,0);
	vector < pii > e;
	for (int i = 0;i < n;++i) 
		if (i != p[i] && !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();
	for (int i = 1;i < n;++i)
		smax(e[i].se,e[i - 1].se);
	for (int i = 0;i + 1 < k;++i)
		if (e[i + 1].fi > e[i].se)
			ans += 2;
	return ans;
}
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 632 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 632 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 632 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 6 ms 752 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 632 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -