이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
int n;
cin>>n;
vector<pair<ll, ll>> v;
for (int i = 0; i < n; i++) {
ll a, b;
cin>>a>>b;
v.push_back(make_pair(a, b));
}
sort(v.begin(), v.end());
ll score = v[0].second;
ll best_score = score;
for (int i = 1; i < n; i++) {
ll dist = v[i].first - v[i-1].first;
ll diff = v[i].second - dist;
if (score+diff > v[i].second) {
score += diff;
} else {
score = v[i].second;
}
if (score > best_score) {
best_score = score;
}
}
cout<<best_score<<"\n";
return 0;
}
# | 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... |