Submission #73454

# Submission time Handle Problem Language Result Execution time Memory
73454 2018-08-28T09:46:41 Z SmsS Ancient Books (IOI17_books) C++14
0 / 100
5 ms 684 KB
#include<bits/stdc++.h>
using namespace std;
#define for2(a,b,c) for(int a = b; a < c; a++)
#include "books.h"
#define ll long long

const int maxn =  1000100;
int par[maxn];
bool seen[maxn];
int getpar(int x){
	if(par[x] < 0) return x;
	return par[x] = getpar(par[x]);
}

long long minimum_walk(std::vector<int> p, int s) {
	ll res = 0;
	int n = p.size();
	fill(par,par+n,-1);
	for2(i,0,n) res += abs(i-p[i]);
	for2(rep,0,n){
		int i = (rep+s)%n;
		if(seen[i]) continue;
		int l = min(i,p[i]);
		int r = max(i,p[i]);
		bool SS = 0;
		int L = i;
		int R = i;
		seen[i] = 1;
		while(1){
			int j = -1;
			if(L != l){
				L--;
				j = L;
			}
			if(R != r){
				R++;
				j = R;
			}
			seen[j] = 1;
			L = min(L,p[j]);
			R = max(R,p[j]);
			if( j == -1) break;
			int x = getpar(i);
			int y = getpar(j);
			if(x == getpar(s) || y == getpar(s)) SS=1;
			if(x != y){
				if(par[x] < par[y]) swap(x,y);
				par[y] += par[x];
				par[x] = y;
			}
		}
		if(SS && rep) res += 2;
	}
	for2(i,0,n) if(getpar(i) == i) res += 2;
	res -= 2;
	for(int i = n-1; i > s; i--){
		if(par[getpar(i)] != -1) break;
		res -= 2;
	}
	for2(i,0,n){
		if(par[getpar(i)] != -1 || i == s) break;
		res -= 2;
	}
	return res;
}
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 468 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 468 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 468 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 4 ms 684 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 468 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -