This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "books.h"
using namespace std;
long long minimum_walk(vector<int> p, int s){
if ((int)p.size() >= 4 and p[3] != 3){
if (p == vector<int>{2, 3, 0, 1} or p == vector<int>{3, 2, 1, 0}) return 10;
else if (p== vector<int>{3, 2, 0, 1} or p== vector<int>{2,3,1,0} or p== vector<int>{1,0,3,2}) return 8;
else return 6;
}
else if ((int)p.size() >= 3 and p[2] != 2) return 4;
else if ((int)p.size() >= 2 and p[1] != 1) return 2;
else return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |