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;
const int MAXN = 2e5 + 3e2;
typedef long long ll;
long long min_total_length(std::vector<int> r, std::vector<int> b) {
int nr = r.size(), nb = b.size();
ll ans = 0;
for (int i = 0; i < min(nr, nb); i++){
ans += abs(r[i] - b[i]);
}
if (nr < nb){
for (int i = nr; i < nb; i++){
ans += abs(b[i] - r.back());
}
} else {
for (int i = nb; i < nr; i++){
ans += abs(r[i] - b.front());
}
}
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... |