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