This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int N = 100100;
int x[N], g[N], e[N];
long long pe[N], pg[N];
int main() {
int n;
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> x[i] >> g[i] >> e[i];
pg[i] = pg[i-1]+g[i];
pe[i] = pe[i-1]+e[i];
}
long long ans = 0;
for (int r = 1; r <= n; r++) {
for (int l = 1; l <= r; l++) {
if (x[r]-pe[r] <= x[l]-pe[l-1]) {
ans = max(ans, pg[r] - pg[l-1]);
}
}
}
cout << ans << "\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... |