이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define f(i, a, b) for(int i = a; i <= b; i++)
#define fr(i, a, b) for(int i = a; i >= b; i--)
#define pii pair <int, int>
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define in insert
#define vvec vector<vector<int>>
#define fast ios_base :: sync_with_stdio(0); cin.tie(0); cout.tie(0)
using namespace std;
const int N = 5e5 + 5;
int n, k;
pii a[N];
vector <int> z;
void sub1()
{
int res = 0;
f(i, 1, n)
{
int s = 0, mn = 1e17, mx = 0;
f(j, i, n)
{
s += a[j].se;
mn = min(mn, a[j].fi);
mx = max(mx, a[j].fi);
res = max(res, s - (mx - mn));
}
}
cout << res;
}
signed main()
{
fast;
cin >> n;
f(i, 1, n) cin >> a[i].fi >> a[i].se;
sort(a + 1, a + n + 1);
sub1();
}
# | 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... |