이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
typedef long long ll;
int main() {
std::ios::sync_with_stdio(0); std::cin.tie(0);
int n; std::cin >> n;
std::vector <std::pair <ll, ll>> a(n);
for (auto& p : a) std::cin >> p.first >> p.second;
std::sort(a.begin(), a.end());
ll ans = a[0].second;
for (ll i = 0, sum = 0, max = a[0].first; (int)i < n; i++) {
sum += a[i].second;
max = std::max(max, a[i].first - sum - a[i].second);
ans = std::max(ans, sum + max - a[i].first);
}
std::cout << ans << "\n";
}
# | 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... |