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 "wiring.h"
#include<bits/stdc++.h>
using namespace std;
long long min_total_length(vector<int> r, vector<int> b) {
long long ans = 0;
int n = r.size(); int m = b.size();
for(int i = 0; i < min(n, m); ++i){
ans += b[i] - r[n-1-i];
}
if(m == n) return ans;
if(m > n){
for(int i = n; i < m; ++i){
ans+= b[i] - r[n-1];
}
return ans;
}
else{
for(int i = m; i < n; ++i){
ans+= b[0]-r[i];
}
return ans;
}
}
# | 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... |