이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "wiring.h"
#include <bits/stdc++.h>
#define MAX 1000000000000000000
#define MIN -1
#define pb push_back
#define mp make_pair
#define all(a) a.begin (), a.end()
using namespace std;
typedef vector <int> vi;
typedef long long int ll;
long long min_total_length(vector<int> r,vector<int> b) {
int a = r.size();
int t = b.size();
int i = a-1;
int j = 0;
ll s = 0;
while (i >= 0 and j < t){
s += b[j]-r[i];
i--;
j++;
}
while (i >= 0){
s += b[0]-r[i];
i--;
}
while (j < t){
s+= b[j]-r[a-1];
j++;
}
return s;
}
# | 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... |