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 ) {
int n = r.size(), m = b.size();
long long ans = 0;
for ( int i = 0; i < n; i++ )
ans -= r[i];
for ( int i = 0; i < m; i++ )
ans += b[i];
if ( n < m )
ans -= (long long)r[n - 1] * (m - n);
else
ans += (long long)b[0] * (n - m);
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... |