# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
672132 | Stavab | Art Exhibition (JOI18_art) | C++14 | 0 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <utility>
#include <algorithm>
using namespace std;
int main()
{
int n;
scanf("%d", &n);
vector<pair<long long, long long>> v(n);
for(int i = 0; i < n; i++)
{
scanf("%lld", &v[i].first);
scanf("%lld", &v[i].second);
}
sort(v.begin(), v.end());
long long best = -1;
long long sum = 0;
for(int i = 0; i < n; i++)
{
sum += v[i].second;
best = max(best, sum - v[i].first);
}
long long temp = 0;
sum = 0;
for(int i = 0; i < n; i++)
{
best = max(best, best - sum + v[i].first - temp);
sum += v[i].second;
temp = v[i].first;
}
printf("%lld\n", best);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |