이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,a,b;
cin >> n;
vector<pair<int,int>> tab(0);
for (int i=0; i<n; i++){
cin >> a >> b;
tab.push_back({a,b});
}
sort(tab.begin(),tab.end());
int wynik = 0;
for (int i=0; i<n; i++){
int akt_wynik = 0;
int pop = tab[i].first;
for (int j=i; j<n; j++){
akt_wynik = akt_wynik-(tab[j].first-pop)+tab[j].second;
pop = tab[j].first;
wynik = max(wynik,akt_wynik);
}
}
cout << wynik << endl;
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... |