# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
459653 | Hamed5001 | Art Exhibition (JOI18_art) | C++14 | 0 ms | 204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve() {
int N;
cin >> N;
vector<pair<ll, ll>> AB(N);
for (auto& [a, b] : AB)
cin >> a >> b;
sort(AB.begin(), AB.end());
for (int i = 1; i < N; i++)
AB[i].second += AB[i-1].second;
ll ans = AB[0].second;
for (int l = 0, r = 1; r < N; ++r) {
ll tmp1 = AB[r].second - (l ? AB[l-1].second : 0) - AB[r].first + AB[l].first;
ll tmp2 = AB[r].second - AB[r-1].second - AB[r].first*2;
if (tmp2 >= tmp1) l = r;
ans = max({ans, tmp1, tmp2});
}
cout << ans;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
solve();
}
컴파일 시 표준 에러 (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... |