이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
typedef vector<int> vi;
#define MAXI (int)1e5
#define LSOne(S) ((S) & -(S))
#define MSB(S) __builtin_clz(S)
vector<ll> ft;
void solve(){
int n; cin >> n;
vector<pair<ll,ll>> bilder;
for(int i = 0;i<n;i++){
ll a,b; cin >> a >> b;
bilder.push_back({a,b});
}
ll maxi = 0;
sort(bilder.begin(),bilder.end());
for(int i = 0;i<n;i++){
ll summe = bilder[i].second;
for(int j = i+1;j<n;j++){
summe += bilder[j].second;
maxi = max(summe+bilder[i].first-bilder[j].first,maxi);
}
}
cout << maxi;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(nullptr);
cout << fixed << setprecision(8);
int t = 1;
//cin >> t;
while(t){
solve();
t--;
cout << "\n";
}
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... |