# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
997124 | 2024-06-11T17:50:34 Z | Luca1234 | Art Exhibition (JOI18_art) | C++14 | 0 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; vector <pair <long long, int> > v; int main() { int n, val; long long sz; cin>>n; for(int i=1; i<=n; i++) { cin>>sz>>val; v.push_back({sz, val}); } sort(v.begin(), v.end()); long long ans=-1e15, aux=-1e15, sum=-1e15; for(int i=0; i<v.size(); i++) { aux=max(aux, v[i].first-sum); sum+=v[i].second; ans=max(ans, sum-v[i].second+aux); } cout<<ans; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |