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(std::vector<int> r, std::vector<int> b) {
long long sumRouge = 0, sumBleu = 0;
for (int a : r)
sumRouge += a;
for (int a : b)
sumBleu += a;
long long tot = sumBleu - sumRouge;
if (r.size() > b.size())
tot += b[0] * (r.size() - b.size());
if (b.size() > r.size())
tot -= r[r.size() - 1] * (b.size() - r.size());
return tot;
}
# | 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... |