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) {
int rlen=r.size();
int blen=b.size();
int x=0;
int y=0;
if(rlen<blen)
{
x=blen*(blen+1);
x=x/2;
y=rlen*(rlen-1);
y=y/2;
}
else
{
x=blen*(blen-1);
x=x/2;
y=rlen*(rlen+1);
y=y/2;
}
return x+y;
}
# | 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... |