답안 #757240

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
757240 2023-06-12T20:47:22 Z alexander707070 고대 책들 (IOI17_books) C++14
0 / 100
1 ms 340 KB
#include<bits/stdc++.h>
#define MAXN 1000007
using namespace std;
 
int n,perm[MAXN],len[MAXN],br,cnt,last;
bool li[MAXN];
long long sum,add[MAXN],ans;

void dfs(int x){
	li[x]=true;
	sum+=abs(x-perm[x]); br++;
	if(!li[perm[x]])dfs(perm[x]);
}

long long minimum_walk(vector<int> p, int s){
	n=int(p.size());

	for(int i=0;i<n;i++)perm[i]=p[i];

	for(int i=0;i<n;i++){
		if(!li[i]){
			sum=br=0; 
			dfs(i); add[i]=sum; len[i]=br;
			if(len[i]>1)last=i;
		}
	}

	for(int i=0;i<=last;i++){
		ans+=add[i];
		ans++;
	}
	ans+=last;

	return ans;
}

/*
int main(){
	cout<<minimum_walk({0, 2, 3, 1}, 0)<<"\n";
}
*/
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '6', found: '7'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '6', found: '7'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '6', found: '7'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 340 KB 3rd lines differ - on the 1st token, expected: '3304', found: '4729'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '6', found: '7'
2 Halted 0 ms 0 KB -