Submission #611858

# Submission time Handle Problem Language Result Execution time Memory
611858 2022-07-29T08:10:29 Z Shithila Ancient Books (IOI17_books) C++14
0 / 100
1 ms 288 KB
#include "books.h"


long long minimum_walk(std::vector<int> p, int s) {
	int len=p.size();
	int correct=true;
	int count=0;
	for(int i=len-1;i>0;i--)
	{
		if(p[i]!=i)
		{
			correct=false;
			break;
		}
		count++;
	}
	if(correct==true) return 0;
	else if(count==0 && len>3)
	{
		correct=true;
		for(int i=len-1;i>0;i--)
	{
		if(p[i]==i)
		{
			correct=false;
			break;
		}
	}
	if(correct==false)
	{
		int ans=len-count-1;
		ans=ans+ans;
		return ans;
	}
	else return 2*len;
	}
	else
	{
		int ans=len-count-1;
		ans=ans+ans;
		return ans;
	}
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 288 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 288 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 288 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB 3rd lines differ - on the 1st token, expected: '3304', found: '1998'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 288 KB 3rd lines differ - on the 1st token, expected: '6', found: '8'
2 Halted 0 ms 0 KB -