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>
using namespace std;
typedef long long ll;
ll plan_roller_coaster (vector<int> s, vector<int> t){
int n = s.size();
vector<int> all;
for (int i=0; i<n; i++)
all.push_back(i);
ll output = 2e18;
do{
ll val = 0;
for (int i=1; i<n; i++){
val += max(0ll, (ll)(t[i - 1] - s[i]));
}
output = min(output, val);
} while(next_permutation(all.begin(), all.end()));
return output;
}
# | 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... |