이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "railroad.h"
#include<bits/stdc++.h>
using namespace std;
bool costume_sort(pair<int,int> a, pair<int,int> b) {
if (a.second-b.first<b.first-a.second) return false;
return true;
}
long long plan_roller_coaster(vector<int> s, vector<int> t) {
long long n = (long long) s.size(), curr_speed = 1, need = 0;
vector<pair<int,int> > S(n+1);
S[0] = {1,1};
for (int i = 1; i<=n; ++i) {
S[i].first = s[i];
S[i].second = t[i];
}
sort(S.begin()+1, S.end(), costume_sort);
for (int i = 0; i<=n; ++i) {
if (S[i-1].second>S[i].first) need += curr_speed-S[i].first;
}
return need;
}
# | 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... |